main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Answer Posted / vignesh1988i
x=57
y=95
| Is This Answer Correct ? | 9 Yes | 14 No |
Post New Answer View All Answers
What is a c token and types of c tokens?
What are linker error?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
please give me some tips for the placement in the TCS.
differentiate built-in functions and user – defined functions.
What are different types of variables in c?
Which header file is used for clrscr?
What are structural members?
What are pointers really good for, anyway?
what are bit fields in c?
What is double pointer?
Explain the Difference between the New and Malloc keyword.
What is property type c?
Are local variables initialized to zero by default in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above