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 What is the base data type of a pointer variable by which the memory would be allocated to it? No data type int unsigned int float Depends upon the type of the variable to which it is pointing. No data type int unsigned int float Depends upon the type of the variable to which it is pointing. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? All of these It cannot be applied to an expression It is a unary operator It associates from the right The operand can come before or after the operator All of these It cannot be applied to an expression It is a unary operator It associates from the right The operand can come before or after the operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} None of these Exam\0Veda Veda Exam Veda Exam None of these Exam\0Veda Veda Exam Veda Exam 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); 8 5 6 9 7 8 5 6 9 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} hai haasi absiha asiha hai haasi absiha asiha ANSWER DOWNLOAD EXAMIANS APP