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

Answer Posted / chandan dey

55

59

Is This Answer Correct ?    12 Yes 31 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is output redirection?

661


‎How to define structures? · ‎

622


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

632


What is signed and unsigned?

636


Disadvantages of C language.

649






What are identifiers in c?

628


I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.

1488


Explain what’s a signal? Explain what do I use signals for?

606


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

713


What is the difference between struct and typedef struct in c?

650


Write a program to swap two numbers without using third variable in c?

612


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

3839


What are the back slash character constants or escape sequence charactersavailable in c?

678


Can we declare function inside main?

560


What is a const pointer in c?

666