C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0289 713 1289 0713 Syntax error 0289 713 1289 0713 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as int(*p(char *))[] int (*p) (char *)[] int *p(char *)[] None of these. int(*p(char *))[] int (*p) (char *)[] int *p(char *)[] None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on R-values Local variables Both of the above Members of a structure Arithmetic expressions R-values Local variables Both of the above Members of a structure Arithmetic expressions ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with An alphabet Both of the above A special symbol other than underscore A number An alphabet Both of the above A special symbol other than underscore A number ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} 6 3 Error Garbage value 6 3 Error Garbage value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){float num=5.6;switch(num){case 5:printf("5");case 6:printf("6");default : printf("0");break;}printf("%d", num);} Complier error 5 5.600000 6 5.600000 0 5.600000 Complier error 5 5.600000 6 5.600000 0 5.600000 ANSWER DOWNLOAD EXAMIANS APP