C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam None of these Exam Veda Exam\0Veda Veda Exam None of these Exam Veda Exam\0Veda Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 2 2 2 2 1 1 1 1 2 2 2 2 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Members of a structure R-values Local variables Both of the above Arithmetic expressions Members of a structure R-values Local variables Both of the above Arithmetic expressions ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? The operand can come before or after the operator It is a unary operator All of these It cannot be applied to an expression It associates from the right The operand can come before or after the operator It is a unary operator All of these It cannot be applied to an expression It associates from the right ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 0 0 0 Error garbage values 1 1 1 0 0 0 Error garbage values 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 20 Compiler Error 2 Linker Error 20 Compiler Error 2 Linker Error ANSWER DOWNLOAD EXAMIANS APP