Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int n = 87;
- int *p = &n;
- int nArr[17] = {100, 101, 102, 103};
- //////////////////////////////////////////////////////////////
- int main()
- {
- printf("%d\n", nArr[1] );
- printf("%d\n", nArr[2] );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement