1. What will be the output of the program ? #include<stdio.h> 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); ptr++; 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; }





Write Comment

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Tags
Show Similar Question And Answers
QA->A static member function can have access to:....
QA->A computer with a 32 bit wide data bus implements its memory using 8 K x 8 static RAM chips. The smallest memory that this computer can have is:....
QA->What is social welfare program "Integrated Rural Development Program (IRDP) -1978" intented for ?....
QA->Name the translatory program which translates the high level language into machine language before running the program?....
QA->Routine is not loaded until it is called. All routines are kept on disk in a relocatable load format. The main program is loaded into memory and is executed. This type of loading is called:....
MCQ->What will be the output of the program ? #include<stdio.h> 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); ptr++; 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; }....
MCQ->What will be the output of the program? #include<stdio.h> int fun(int ptr); int main() { int i=10; const int ptr = &i; fun(&ptr); return 0; } int fun(int ptr) { int j = 223; int temp = &j; printf("Before changing ptr = %5x\n", ptr); const ptr = temp; printf("After changing ptr = %5x\n", ptr); return 0; }....
MCQ->What will be the output of the program in TurboC? #include<stdio.h> int fun(int ptr); int main() { int i=10, j=20; const int ptr = &i; printf(" i = %5X", ptr); printf(" ptr = %d", ptr); ptr = &j; printf(" j = %5X", ptr); printf(" ptr = %d", ptr); return 0; }....
MCQ->What will be the output of the program ? #include<stdio.h> int check(static int, static int); int main() { int c; c = check(10, 20); printf("%d\n", c); return 0; } int check(static int i, static int j) { int p, q; p = &i; q = &j; if(i >= 45) return (p); else return (q); }....
MCQ->What will be the output of the program (in Turbo C)? #include<stdio.h> int fun(int f) { f = 10; return 0; } int main() { const int arr[5] = {1, 2, 3, 4, 5}; printf("Before modification arr[3] = %d", arr[3]); fun(&arr[3]); printf("\nAfter modification arr[3] = %d", arr[3]); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions