#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
Why do we need functions in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What is the use of static variable in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is main return c?
Explain what does the function toupper() do?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What is c programing language?
When should the volatile modifier be used?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
writ a program to compare using strcmp VIVA and viva with its output.
code for quick sort?
When should the const modifier be used?
What are the different types of C instructions?
Explain what is the difference between a free-standing and a hosted environment?