Browsing Tag
syntax of function in c
4 posts
What is the output of this C code ? | Recursion Program in C | Recursion in C
Answer : D. This code will generate an error.
Ravi and Rupali are asked to write a program to sum the rows of 2X2 matrices stored in the array A..?
Answer : B. Code b will execute faster than a
main () {int x=20, y=35; x = y++ + x++; y = ++y + ++x; printf (“%d %d\n”, x, y);} ?
Answer : While calculating the y value, x & y values are preincremtned, so x & y values are incremented…