main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Post New Answer View All Answers
Are pointers integer?
What is a stream in c programming?
What are extern variables in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is the use of #include in c?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What is null pointer constant?
What are local variables c?
What is the best way to comment out a section of code that contains comments?
Explain what is the advantage of a random access file?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is the maximum length of an identifier?
How many levels of pointers can you have?
Explain which function in c can be used to append a string to another string?
Write a program to check whether a number is prime or not using c?