#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
Explain why c is faster than c++?
What are the different types of control structures?
What is && in c programming?
What is meant by preprocessor in c?
What is the use of extern in c?
What is a volatile keyword in c?
What are the advantages of using macro in c language?
Explain the Difference between the New and Malloc keyword.
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
write a program to create a sparse matrix using dynamic memory allocation.
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Is calloc better than malloc?
How can I dynamically allocate arrays?
Explain what header files do I need in order to define the standard library functions I use?
What is return in c programming?