#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 / abc
1 1 2 0 0
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
What is union in c?
What is define directive?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is static and volatile in c?
How can you find out how much memory is available?
How do you generate random numbers in C?
How can you find the day of the week given the date?
Why we use conio h in c?
Explain how do you determine whether to use a stream function or a low-level function?
Can a local variable be volatile in c?
What are 3 types of structures?
List the variables are used for writing doubly linked list program.
any "C" function by default returns an a) int value b) float value c) char value d) a & b
#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); }