C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these Good M Good Morning Morning None of these Good M Good Morning Morning ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 12 7 6 7 11 6 5 6 6 6 12 7 6 7 11 6 5 6 6 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} Error hello garbage value None of These hello 5 Error hello garbage value None of These hello 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 16 64 4 None of These 16 64 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Local scope Function scope No scope at all Block scope File scope Local scope Function scope No scope at all Block scope File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? % * / + None of these % * / + None of these ANSWER DOWNLOAD EXAMIANS APP