C Programming Determine Output:void main(){ printf("%p", main);} make an infinite loop Some address will be printed Error None of These make an infinite loop Some address will be printed Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? system() start() getch() main() printf() system() start() getch() main() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Acts before compilation Takes care of macros Takes care of conditional compilation Takes care of include files All of these Acts before compilation Takes care of macros Takes care of conditional compilation Takes care of include files All of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int a[] = {10,20,30,40,50}, j, *p; for(j=0; j<5; j++){ printf("%d" ,*a); a++; } p = a; for(j=0; j<5; j++){ printf("%d" ,*p); p++; }} Error 10 20 30 40 50 Garbage Value 10 20 30 40 50 10 20 30 40 50 None of These Error 10 20 30 40 50 Garbage Value 10 20 30 40 50 10 20 30 40 50 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 7 None of These 5 6 7 None of These 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? James Dr. Bjarne Stroustrup Dennis Ritchie F. Codd Gosling James Dr. Bjarne Stroustrup Dennis Ritchie F. Codd Gosling ANSWER DOWNLOAD EXAMIANS APP