main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / mukul
5,10,2
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Why do we use header files in c?
What is void pointers in c?
Explain the difference between malloc() and calloc() function?
What is main return c?
What is malloc calloc and realloc in c?
What are c preprocessors?
Why we use void main in c?
What is the use of volatile?
What are the rules for identifiers in c?
What are the types of data types and explain?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What is the difference between array_name and &array_name?
What are the features of c language?
what are bit fields in c?