main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / nirmala
11,15
| Is This Answer Correct ? | 3 Yes | 19 No |
Post New Answer View All Answers
What is nested structure with example?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What are the different types of control structures?
What is meant by keywords in c?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is the function of this pointer?
What would be an example of a structure analogous to structure c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
how to make a scientific calculater ?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What are reserved words with a programming language?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is restrict keyword in c?
Which programming language is best for getting job 2020?
How can I recover the file name given an open stream?