#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 / musa
1,2,3,1,1
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
How are 16- and 32-bit numbers stored?
How many types of sorting are there in c?
Explain what is the stack?
What is the correct declaration of main?
When should a type cast not be used?
What are linked lists in c?
How can you increase the size of a dynamically allocated array?
what is the difference between 123 and 0123 in c?
write a progrmm in c language take user interface generate table using for loop?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What are the benefits of organizational structure?
Is c procedural or functional?
What is modifier & how many types of modifiers available in c?
What is the value of c?
Why header files are used?