main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Post New Answer View All Answers
What is array of structure in c programming?
Write a factorial program using C.
What is the use of volatile?
how to capitalise first letter of each word in a given string?
What is the use of typedef in c?
Ow can I insert or delete a line (or record) in the middle of a file?
Write a program in c to replace any vowel in a string with z?
Explain which function in c can be used to append a string to another string?
What is a substring in c?
How can I find out how much free space is available on disk?
write a progrmm in c language take user interface generate table using for loop?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
write a program to generate address labels using structures?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Explain the use of keyword 'register' with respect to variables.