C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning M Good None of these Good Morning Morning M Good None of these Good Morning ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? 10 -110 -10 110 450 10 -110 -10 110 450 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} None of These Error hello garbage value hello 5 None of These Error hello garbage value hello 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h None of these During linking During Preprocessing During Editing During Execution None of these During linking During Preprocessing During Editing During Execution ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Combining two strings. Partitioning the string into two strings. Extracting a substring out of a string. Merging two strings. Comparing the two strings to define the larger one. Combining two strings. Partitioning the string into two strings. Extracting a substring out of a string. Merging two strings. Comparing the two strings to define the larger one. 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 4 64 16 None of These 4 64 16 ANSWER DOWNLOAD EXAMIANS APP