#include<stdio.h>
int main()
{ int i=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}
Answer Posted / musa
1,2,3,1,1
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is the difference between arrays and pointers?
Write a program to implement queue.
What is static function in c?
given post order,in order construct the corresponding binary tree
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 are header files in c programming?
Why is structure important for a child?
What is function pointer c?
What is integer constants?
What are identifiers and keywords in c?
What is the difference between array and structure in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What are register variables? What are the advantage of using register variables?
What does. int *x[](); means ?
what is the diffrenet bettwen HTTP and internet protocol