main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / jignesh patel
5 5
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
What is uint8 in c?
What does c value mean?
Explain the ternary tree?
What is the difference between ++a and a++?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What are linker error?
Explain how can I remove the trailing spaces from a string?
What are pointers?
Can static variables be declared in a header file?
What is the use of typedef in c?
What does 2n 4c mean?
What are the rules for the identifier?
What is bash c?
What does double pointer mean in c?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.