How are 16- and 32-bit numbers stored?
No Answer is Posted For this Question
Be the First to Post Answer
What header files do I need in order to define the standard library functions I use?
How can I delete a file?
can we initialize all the members of union?
How can you increase the allowable number of simultaneously open files?
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
Explain pointer. What are function pointers in C?
what does keyword ‘extern’ mean in a function declaration?
What are control structures? What are the different types?
How can you increase the size of a dynamically allocated array?
What is the argument of a function in c?
How can I call a function with an argument list built up at run time?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?