int 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);
}
Answers were Sorted based on User's Feedback
Answer / nithya
undefined symbol 'k'
undefined symbol 'l'
undefined symbol 'm'
in the above program in the line will be change from ; to ,
int i=-1,j=-1,k=0,l=2,m;
the out put is
00131
| Is This Answer Correct ? | 4 Yes | 1 No |
Without using main fn and semicolon,print remainder for a given number in C language
Differentiate between null and void pointers.
What is the difference between a free-standing and a hosted environment?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
Is c procedural or functional?
write a c program to find the probability of random numbers between 1-1000
Do string constants represent numerical values?
How can I read/write structures from/to data files?
multiple of 9 without useing +,* oprator
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
How do you define a string?