#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 / saravanan
0,1,2,0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is c called a structured programming language?
What is the purpose of scanf() and printf() functions?
What is file in c preprocessor?
What is mean by data types in c?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
In c programming language, how many parameters can be passed to a function ?
What is wrong with this program statement?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is a protocol in c?
Tell us bitwise shift operators?
using for loop sum 2 number of any 4 digit number in c language
What language is c written?
What are global variables and explain how do you declare them?
What are the restrictions of a modulus operator?
What is #include stdio h and #include conio h?