main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / vignesh1998i
oh oh , sorry , i didnt see the value of x is 5....
4 4 1
than k u
| Is This Answer Correct ? | 1 Yes | 11 No |
Post New Answer View All Answers
What is the purpose of ftell?
why wipro wase
What are the application of void data type in c?
Why c is known as a mother language?
What is time complexity c?
What are the data types present in c?
What is the explanation for modular programming?
What is the scope of global variable in c?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
How can I split up a string into whitespace-separated fields?
How can you check to see whether a symbol is defined?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Why c language is called c?
What are conditional operators in C?
What is break in c?