Answer Posted / rajkumar
#include<stdio.h>
void main()
{
int a;
a=a>>4;
if(a%2==1)
printf("the bit is set");
else
printf("the bit is not set");
}
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
Describe how arrays can be passed to a user defined function
What standard functions are available to manipulate strings?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What does nil mean in c?
what do the 'c' and 'v' in argc and argv stand for?
The __________ attribute is used to announce variables based on definitions of columns in a table?
write a program fibonacci series and palindrome program in c
Explain the use of 'auto' keyword in c programming?
Describe dynamic data structure in c programming language?
What are predefined functions in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is output redirection?
What is the difference between exit() and _exit() function?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Why do we use c for the speed of light?