main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / daya
11 16
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
Write a code on reverse string and its complexity.
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Why cant I open a file by its explicit path?
can any one tel me wt is the question pattern for NIC exam
What is ponter?
How can I avoid the abort, retry, fail messages?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
How many types of functions are there in c?
what are bit fields in c?
Why do we need volatile in c?
What are the types of data types and explain?
What is the heap?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is volatile keyword in c?