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 |
What is an anonymous union and where to apply that ?
Explain can static variables be declared in a header file?
Write a program that his output * *** *****
Explain what is the difference between the expression '++a' and 'a++'?
Difference Between embedded software and soft ware?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
Can u return two values using return keyword? If yes, how? If no, why?
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
Explain enumerated types.
List the variables are used for writing doubly linked list program.
What is new line escape sequence?
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>