What do you know about the use of bit field?
No Answer is Posted For this Question
Be the First to Post Answer
to get a line of text and count the number of vowels in it
How can variables be characterized?
What is variable and explain rules to declare variable in c?
Difference between linking and loading?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Why we use break in c?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
How do you determine whether to use a stream function or a low-level function?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
Write a program to print prime nums from 1-20 using c programing?