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
What is the 'named constructor idiom'?
how can I convert a string to a number?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is sizeof int in c?
Why main function is special give two reasons?
How can I remove the trailing spaces from a string?
Can the “if” function be used in comparing strings?
Which type of language is c?
Explain what header files do I need in order to define the standard library functions I use?
What are the three constants used in c?
How can I write a function analogous to scanf?
How can you tell whether two strings are the same?
How does #define work?
What are the types of i/o functions?
What is meant by gets in c?