main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

Answer Posted / preethi

57
94

Is This Answer Correct ?    105 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is chain pointer in c?

605


What is c programming structure?

623


What type of function is main ()?

592


The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none

768


What is the use of header files?

610






Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

1624


What are the types of variables in c?

582


Can we replace the struct function in tree syntax with a union?

785


Difference between constant pointer and pointer to a constant.

617


Define macros.

787


Why is structure important for a child?

606


What are the different types of data structures in c?

610


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

689


Differentiate between full, complete & perfect binary trees.

675


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

3846