C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 55445 54554 45545 54544 55445 54554 45545 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 13, 13, 24, 13 50, 13, 11, 13 50, 13, 24, 13 13, 10, 24, 50 50, 13, 24, 50 13, 13, 24, 13 50, 13, 11, 13 50, 13, 24, 13 13, 10, 24, 50 50, 13, 24, 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } Some address will be printed None of these. Hello H Some address will be printed None of these. Hello H ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) None of these 10 30 15 50 None of these 10 30 15 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd James Gosling Dennis Ritchie Dr. Bjarne Stroustrup F. Codd James Gosling Dennis Ritchie Dr. Bjarne Stroustrup ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 15 None of these 9 10 11 12 13 Infinite loop 10 11 12 13 14 10 11 12 13 14 15 None of these 9 10 11 12 13 Infinite loop 10 11 12 13 14 ANSWER DOWNLOAD EXAMIANS APP