C Programming An array elements are always stored in ________ memory locations. Sequential and Random Sequential Random None of these Sequential and Random Sequential Random None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 0 0 0 0 1 None of these 1 1 1 0 0 0 0 1 None of these 1 1 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 1 1 1 garbage values 0 0 0 Error 1 1 1 garbage values ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} %d\n 300 Error None of These %d\n 300 Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dennis Ritchie Gosling F. Codd Dr. Bjarne Stroustrup James Dennis Ritchie Gosling F. Codd Dr. Bjarne Stroustrup James ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} None of these Hello World World WorldHello Hello None of these Hello World World WorldHello Hello ANSWER DOWNLOAD EXAMIANS APP