main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / aravind
It shows syntax error because relational operators are used only for checking conditions.
| Is This Answer Correct ? | 8 Yes | 23 No |
Post New Answer View All Answers
What is a pointer and how it is initialized?
What is external variable in c?
What is the function of multilevel pointer in c?
What are the ways to a null pointer can use in c programming language?
Is exit(status) truly equivalent to returning the same status from main?
What are the advantages and disadvantages of pointers?
Why does everyone say not to use scanf? What should I use instead?
Differentiate between new and malloc(), delete and free() ?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is the use of linkage in c language?
Why pointers are used?
What is the use of typedef in structure in c?
What are the types of bitwise operator?
Differentiate abs() function from fabs() function.
What are linked lists in c?