what is the output of the following program?
main()
{
int i=-1,j=-1,k=0,l=2,m;
m=i++&&j++&&k++||l++;
printf("%d %d %d %d %d",i,j,k,l,m);
}
Post New Answer View All Answers
What is time complexity c?
What are the c keywords?
What is c basic?
What do you mean by c what are the main characteristics of c language?
Explain high-order and low-order bytes.
write a c program for swapping two strings using pointer
What 'lex' does?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Why is python slower than c?
What is 1f in c?
What is break in c?
How can you allocate arrays or structures bigger than 64K?
What is a char in c?
Explain how can you tell whether two strings are the same?
What is self-referential structure in c programming?