main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Post New Answer View All Answers
How do you determine whether to use a stream function or a low-level function?
What are categories used for in c?
Difference between linking and loading?
What is volatile keyword in c?
Can you think of a logic behind the game minesweeper.
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How do you determine the length of a string value that was stored in a variable?
Does sprintf put null character?
Is fortran faster than c?
Explain what is the difference between null and nul?
In c programming language, how many parameters can be passed to a function ?
How to set file pointer to beginning c?
What are the c keywords?
What is getch c?
What are the valid places to have keyword “break”?