C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} Error 100 1 0 Error 100 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) None of these 50 10 30 15 None of these 50 10 30 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} complier error -1 1 -1 -1 1 1 -1 1 complier error -1 1 -1 -1 1 1 -1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? char int real float double char int real float double ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Members of a structure R-values Arithmetic expressions Local variables Both of the above Members of a structure R-values Arithmetic expressions Local variables Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with An alphabet A special symbol other than underscore A number Both of the above An alphabet A special symbol other than underscore A number Both of the above ANSWER DOWNLOAD EXAMIANS APP