main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Post New Answer View All Answers
Who invented b language?
What are the disadvantages of c language?
Why do some versions of toupper act strangely if given an upper-case letter?
What is a void pointer in c?
What is typedef?
why wipro wase
Explain what is the benefit of using const for declaring constants?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Explain a file operation in C with an example.
Difference between Function to pointer and pointer to function
FILE PROGRAMMING
Explain what is output redirection?
When a c file is executed there are many files that are automatically opened what are they files?
given post order,in order construct the corresponding binary tree