Rowan-Classes/3rd-Semester-Fall-2022/PDS/test.c
2024-02-22 14:26:13 -05:00

8 lines
97 B
C
Executable File

#include <stdio.h>
void main()
{
int x[5] = {1,2,3,4,5};
printf("%d", *(x+1));
}