C Programming The address operator &, cannot act on R-values Both of the above Local variables Arithmetic expressions Members of a structure R-values Both of the above Local variables Arithmetic expressions Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 11, 10 11, 11 10, 10 10, 11 11, 10 11, 11 10, 10 10, 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } H Some address will be printed Hello None of these. H Some address will be printed Hello None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Hello Some Address will be printed None of These H Hello Some Address will be printed None of These H ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope No scope at all Local scope File scope Function scope Block scope No scope at all Local scope File scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on a new line has # as the first character need not start on the first column comes before the first executable statement need not start on a new line has # as the first character need not start on the first column comes before the first executable statement ANSWER DOWNLOAD EXAMIANS APP