main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Post New Answer View All Answers
Is c still relevant?
How many keywords (reserve words) are in c?
What is a macro in c preprocessor?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is the role of this pointer?
How arrays can be passed to a user defined function
What is s or c?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
Write a program to print factorial of given number without using recursion?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is difference between stdio h and conio h?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What is wrong with this program statement?