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);
}
Answer Posted / nisha
-1 -1 0 2 1
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Does c have circular shift operators?
Explain the difference between the local variable and global variable in c?
How many types of operator or there in c?
What is the use of in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Explain about block scope in c?
What is an identifier?
Explain pointer. What are function pointers in C?
Explain which function in c can be used to append a string to another string?
How do I convert a string to all upper or lower case?
What is c language & why it is used?
Do you know the difference between malloc() and calloc() function?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
How do you do dynamic memory allocation in C applications?