main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / kalai
10,15
| Is This Answer Correct ? | 1 Yes | 22 No |
Post New Answer View All Answers
Explain how do you determine whether to use a stream function or a low-level function?
Why is c fast?
find out largest elemant of diagonalmatrix
Explain the difference between #include "..." And #include <...> In c?
How can you tell whether a program was compiled using c versus c++?
What are enumerated types?
What does the format %10.2 mean when included in a printf statement?
What is the use of function overloading in C?
What is a lvalue
What is volatile keyword in c?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Explain enumerated types in c language?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What does %d do in c?
How many types of operator or there in c?