What do you know about the use of bit field?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
What are the c keywords?
why we use "include" word before calling the header file. is there any special name for that include??????
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
what is uses of .net
How can you invoke another program from within a C program?
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
Place the #include statement must be written in the program?
What are the different types of data structures in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What does sizeof return c?