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 |
Why is c called "mother" language?
How to implement variable argument functions ?
What is register variable in c language?
Are the variables argc and argv are always local to main?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
What is sizeof return in c?
what is constant pointer?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
write function to reverse char array ... without using second array
Do you know what is a programing language ?
Explain what are linked list?
What are register variables in c?