main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Post New Answer View All Answers
Why is sprintf unsafe?
Explain the term printf() and scanf() used in c language?
Why pointers are used?
Can you think of a logic behind the game minesweeper.
What is a substring in c?
What is sizeof return in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What are different storage class specifiers in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What do you mean by scope of a variable in c?
Explain what will the preprocessor do for a program?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Are there constructors in c?
Can we use any name in place of argv and argc as command line arguments?