main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / a.jayashree
ans is=10;
if its wrong give me right ans to jshree20@gmail.com
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What does 4d mean in c?
Explain the difference between malloc() and calloc() function?
What is f'n in math?
What is meant by errors and debugging?
program to convert a integer to string in c language'
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What is int main () in c?
Is c is a high level language?
Why is struct padding needed?
What is the meaning of 2d in c?
Once I have used freopen, how can I get the original stdout (or stdin) back?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Is there a built-in function in C that can be used for sorting data?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions