C Programming What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);} 2 4 3 4 2 2 3 3 2 3 2 4 3 4 2 2 3 3 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } None of These 16 4 64 None of These 16 4 64 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Editing During Preprocessing During Execution During linking None of these During Editing During Preprocessing During Execution During linking None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} Some address will be printed Error make an infinite loop None of These Some address will be printed Error make an infinite loop None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Linked list Array Register Queue Stack Linked list Array Register Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} hello garbage value hello 5 Error None of These hello garbage value hello 5 Error None of These ANSWER DOWNLOAD EXAMIANS APP