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
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is string concatenation in c?
What are keywords in c with examples?
What are the benefits of organizational structure?
What do you mean by dynamic memory allocation in c?
How many keywords (reserve words) are in c?
How can I do peek and poke in c?
How do I send escape sequences to control a terminal or other device?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Can you write the function prototype, definition and mention the other requirements.
What is time complexity c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is the value of uninitialized variable in c?
Write a code of a general series where the next element is the sum of last k terms.