Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- ////////////////////////////////////////////////////
- int main()
- {
- int n1 = 11;
- int n2 = 12,
- n3 = 13,
- n4 = 14,
- nDima = 15,
- nOleg = 16;
- int *pArr[10] = {&n1, &n2, }
- for(int i = 0; i < 6; i++)
- {
- printf("%d\n", i);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement