C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 -1 0 Compilation Error 1 33 -1 0 Compilation Error 1 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? 110 10 -110 450 -10 110 10 -110 450 -10 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as None of these Data processing language System programming language General purpose language None of these Data processing language System programming language General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} None of These hello 5 Error hello garbage value None of These hello 5 Error hello garbage value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 6 None of these Garbage Value 0 5 6 None of these Garbage Value 0 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? It is a unary operator It cannot be applied to an expression All of these It associates from the right The operand can come before or after the operator It is a unary operator It cannot be applied to an expression All of these It associates from the right The operand can come before or after the operator ANSWER DOWNLOAD EXAMIANS APP