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
swap 2 numbers without using third variable?
main() { printf("hello"); fork(); }
Is there a way to compare two structure variables?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
write a c program to calculate sum of digits till it reduces to a single digit using recursion
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
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Is c weakly typed?
Difference between strcpy() and memcpy() function?
What is the use of structure padding in c?
How does free() know explain how much memory to release?
What is meant by operator precedence?
Can you please explain the difference between strcpy() and memcpy() function?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?