C Programming :: Arrays
-
What will be the output of the program ?
#include
-
What will be the output of the program ?
#include
int main() { static int a[2][2] = {1, 2, 3, 4}; int i, j; static int *p[] = {(int*)a, (int*)a+1, (int*)a+2}; for(i=0; i2; i++) { for(j=0; j2; j++) { printf("%d, %d, %d, %d\n", *(*(p+i)+j), *(*(j+p)+i), *(*(i+p)+j), *(*(p+j)+i)); } } return 0; } -
What will be the output of the program ?
#include
int main() { void fun(int, int[]); int arr[] = {1, 2, 3, 4}; int i; fun(4, arr); for(i=0; i4; i++) printf("%d,", arr[i]); return 0; } void fun(int n, int arr[]) { int *p=0; int i=0; while(i++ 0; } -
What will be the output of the program ?
#include
void fun(int **p); int main() { int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 8, 7, 8, 9, 0}; int *ptr; ptr = &a[0][0]; fun(&ptr); return 0; } void fun(int **p) { printf("%d\n", **p); } -
What will be the output of the program ?
#include
int main() { static int arr[] = {0, 1, 2, 3, 4}; int *p[] = {arr, arr+1, arr+2, arr+3, arr+4}; int **ptr=p; ptr++; printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr); *ptpr++; printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr); *++ptr; printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr); ++*ptr; printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr); return 0; } -
What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?
#include
-
What will be the output of the program in Turb C (under DOS)?
#include
int main() { int arr[5], i=0; while(i5) arr[i]=++i; for(i=0; i5; i++) printf("%d, ", arr[i]); return 0; } -
What will be the output of the program if the array begins at address 65486?
#include
-
What will be the output of the program ?
#include
-
What will be the output of the program if the array begins 1200 in memory?
#include