C Programming In C programming language, which of the following type of operators have the highest precedence Arithmetic operators Equality operators Relational operators Logical operators Arithmetic operators Equality operators Relational operators Logical operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} None of These hj grjeodt hi friends ij!gsjfoet None of These hj grjeodt hi friends ij!gsjfoet ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);} x=1 x=4 Error x=5 x=0 x=1 x=4 Error x=5 x=0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stderr no such function in 'C'. string stdin Data file stderr no such function in 'C'. string stdin Data file ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ int char long float short int char long float short ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 5 7 9 8 6 5 7 9 8 6 ANSWER DOWNLOAD EXAMIANS APP