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);
}
Answer Posted / jane
00131
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
What does the error 'Null Pointer Assignment' mean and what causes this error?
Why does the call char scanf work?
How can I remove the trailing spaces from a string?
State the difference between x3 and x[3].
what are the 10 different models of writing an addition program in C language?
What is a good data structure to use for storing lines of text?
What is scanf () in c?
What is conio h in c?
What are the types of data types and explain?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
How can I copy just a portion of a string?
define string ?
Write a program to print factorial of given number using recursion?
What are the types of pointers in c?
Is javascript based on c?