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
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
hi send me sample aptitude papers of cts?
Are enumerations really portable?
how logic is used
What is variables in c?
Why do we use return in c?
What is string in c language?
What is the use of getch ()?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Why double pointer is used in c?
Should a function contain a return statement if it does not return a value?
How can I change the size of the dynamically allocated array?
How do you sort filenames in a directory?
Can we use any name in place of argv and argc as command line arguments?