C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} no error no output complier error 1 0 no error no output complier error 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? James F. Codd Dr. Gosling Dennis Ritchie Bjarne Stroustrup James F. Codd Dr. Gosling Dennis Ritchie Bjarne Stroustrup ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);} N None of These M P N None of These M P ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 10 None of these 14 0 1 10 None of these 14 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Hello None of These H Some Address will be printed Hello None of These H Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? gets() scanf() puts() printf() None of these gets() scanf() puts() printf() None of these ANSWER DOWNLOAD EXAMIANS APP