C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} c Error A 65 c Error A 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} Error %d\n None of These 300 Error %d\n None of These 300 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);} -1 1 1 -1 1 1 -1 -1 complier error -1 1 1 -1 1 1 -1 -1 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} None of these Veda Exam\0Veda Exam Veda Exam None of these Veda Exam\0Veda Exam Veda Exam ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strnstr() None of these laststr() strstr() strrchr() strnstr() None of these laststr() strstr() strrchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions Local variables Both of the above Members of a structure R-values Arithmetic expressions Local variables Both of the above Members of a structure R-values ANSWER DOWNLOAD EXAMIANS APP