C Programming The address operator &, cannot act on Local variables Arithmetic expressions Both of the above Members of a structure R-values Local variables Arithmetic expressions Both of the above Members of a structure R-values ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 000 Garbage Value 433 444 333 000 Garbage Value 433 444 333 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 2 2 1 1 2 1 1 2 2 2 1 1 2 1 1 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } 4 16 64 None of These 4 16 64 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Size of the array need not be specified, when Initialization is a part of definition All of these It is a declaratrion It is a formal parameter Initialization is a part of definition All of these It is a declaratrion It is a formal parameter ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Logical operators Arithmetic operators Relational operators Equality operators Logical operators Arithmetic operators Relational operators Equality operators ANSWER DOWNLOAD EXAMIANS APP