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 does 3 periods mean in texting?
how to find anagram without using string functions using only loops in c programming
What is the use of putchar function?
Why c is procedure oriented?
What are the 5 elements of structure?
What is register variable in c language?
What is the use of header?
What is the difference between strcpy() and memcpy() function in c programming?
How is a macro different from a function?
What is linear search?
What are the advantages of using Unions?
Why dont c comments nest?
What is the -> in c?
Why do we use stdio h and conio h?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above