What is union in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program structure to find average of given number
What is the need of structure in c?
What is the difference between malloc() and calloc()?
Tell me what is the purpose of 'register' keyword in c language?
How to add two numbers with using function?
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
which is an algorithm for sorting in a growing Lexicographic order
What is a static variable in c?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
wap to print "hello world" without using the main function.