C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} None of These 10 Compiler Error 50 None of These 10 Compiler Error 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?void main(){ int a=10, b=20; char x=1, y=0; if(a,b,x,y){ printf("EXAM"); } } Nothing is printed XAM is printed Compiler Error exam is printed Nothing is printed XAM is printed Compiler Error exam is printed ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. James Bjarne Stroustrup Dennis Ritchie Gosling F. Codd Dr. James Bjarne Stroustrup Dennis Ritchie Gosling F. Codd ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} 5 5 5 5 5 5 4 3 2 1 None of These Infinite Loop 5 5 5 5 5 5 4 3 2 1 None of These Infinite Loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Some Address will be printed Hello None of These H Some Address will be printed Hello None of These H ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Block scope No scope at all Local scope Function scope File scope Block scope No scope at all Local scope Function scope ANSWER DOWNLOAD EXAMIANS APP