C Programming Which operator from the following has the lowest priority? Conditional operator Assignment operator Unary-operator Division operator Comma operator Conditional operator Assignment operator Unary-operator Division operator Comma operator ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ float char long short int float char long short int ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language System programming language None of these Data processing language General purpose language System programming language None of these Data processing language ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 12 10 None of these 15 11 12 10 None of these 15 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff4 fff1 fff2 fff0 fff3 fff4 fff1 fff2 fff0 fff3 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Comparing the two strings to define the larger one. Extracting a substring out of a string. Partitioning the string into two strings. Combining two strings. Merging two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Partitioning the string into two strings. Combining two strings. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP