main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / guest
5,3,7
| Is This Answer Correct ? | 4 Yes | 17 No |
Post New Answer View All Answers
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Compare interpreters and compilers.
Are c and c++ the same?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
How can I find the modification date and time of a file?
What is assignment operator?
What does %c mean in c?
What does typedef struct mean?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What does malloc () calloc () realloc () free () do?
What are enumerated types?
code for quick sort?
What are the 3 types of structures?
main() { printf("hello"); fork(); }
How do you define a function?