What is #pragma statements?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
Are pointers integers in c?
read an array and search an element
What are formal parameters?
What are pointers in C?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is the difference between exit() and _exit() function?
What is the difference between malloc() and calloc()?
What is the function of multilevel pointer in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is volatile, register definition in C
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0