C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 2 3 Garbage Value 0 1 2 3 Garbage Value 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?#includevoid main(){ int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u", a+1, &a+1);} 65474, 65476 65474, 65488 None of these 65480, 65488 65480, 65496 65474, 65476 65474, 65488 None of these 65480, 65488 65480, 65496 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); 10 Infinite loop 0 0123456789 Syntax error 10 Infinite loop 0 0123456789 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 1 2 1 1 2 2 2 1 1 2 1 1 2 2 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } Syntax error 0713 713 0289 1289 Syntax error 0713 713 0289 1289 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these M Good Morning Good Morning None of these M Good Morning Good Morning ANSWER DOWNLOAD EXAMIANS APP