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++);} 5 6 6 6 12 7 6 7 11 6 5 6 6 6 12 7 6 7 11 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Extracting a substring out of a string. Comparing the two strings to define the larger one. Merging two strings. Partitioning the string into two strings. Combining two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Merging two strings. Partitioning the string into two strings. Combining two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Gosling Dennis Ritchie James Bjarne Stroustrup Dr. F. Codd Gosling Dennis Ritchie James Bjarne Stroustrup Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Relational operators Equality operators Arithmetic operators Logical operators Relational operators Equality operators Arithmetic operators Logical operators 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); 9 5 6 8 7 9 5 6 8 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } 4 Syntax error 1 2 3 4 4 5 6 7 Runtime error 4 Syntax error 1 2 3 4 4 5 6 7 Runtime error ANSWER DOWNLOAD EXAMIANS APP