Are pointers really faster than arrays?
No Answer is Posted For this Question
Be the First to Post Answer
What should malloc(0) do?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
Why should I prototype a function?
how to make program without <> in libray.
When should the register modifier be used? Does it really help?
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
Are the expressions * ptr ++ and ++ * ptr same?
What is the memory allocated by the following definition ? int (*x)[10];
What's the difference between calloc() and malloc()?
write a program for size of a data type without using sizeof() operator?
22 Answers HCL, IBM,
How variables are declared in c?
write a code for large nos multilication (upto 200 digits)