Answer Posted / valli
main()
{
int n;
printf("enter n:");
scanf("%d",&n);
if(n&(1<<5);
printf("5th bit in %d is set",n);
}
| Is This Answer Correct ? | 20 Yes | 2 No |
Post New Answer View All Answers
Explain can you assign a different address to an array tag?
What is the argument of a function in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Differentiate call by value and call by reference?
Can you assign a different address to an array tag?
Explain how can I avoid the abort, retry, fail messages?
What do you mean by Recursion Function?
What is a lvalue
What is assignment operator?
What are high level languages like C and FORTRAN also known as?
What are types of preprocessor in c?
What does the file stdio.h contain?
What is memcpy() function?
What is the mean of function?