main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / madhu
hey how come 15 ....
ans is 11,16
| Is This Answer Correct ? | 5 Yes | 7 No |
Post New Answer View All Answers
Explain what is the difference between text files and binary files?
What is difference between structure and union in c programming?
What is echo in c programming?
What is the meaning of c in c language?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Explain what is wrong with this program statement? Void = 10;
How do I copy files?
What is an endless loop?
What are integer variable, floating-point variable and character variable?
What are the types of data types and explain?
What is cohesion in c?
What is meant by gets in c?
What is hash table in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Is null equal to 0 in sql?