C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} None of These 13 12 11 None of These 13 12 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Gosling James Dr. Dennis Ritchie Bjarne Stroustrup F. Codd Gosling James Dr. Dennis Ritchie Bjarne Stroustrup ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?void main(){ int a[10]; printf("%d %d", a[-1], a[12]);} Garbage value 0 Code will not compile Garbage vlaue Garbage Value 0 0 0 Garbage Value Garbage value 0 Code will not compile Garbage vlaue Garbage Value 0 0 0 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} 13 Compilation error 14 12 11 13 Compilation error 14 12 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} hj grjeodt hi friends None of These ij!gsjfoet hj grjeodt hi friends None of These ij!gsjfoet ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? real double char float int real double char float int ANSWER DOWNLOAD EXAMIANS APP