What is optimization in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the features of c language?
What is meant by global static? why we have to use static variable instead of Global variable
There seem to be a few missing operators ..
What is null pointer in c?
How many levels of pointers can you have?
What do you mean by dynamic memory allocation in c? What functions are used?
How can you print HELLO WORLD without using "semicolon"?
logic for x=y^n
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Difference between fopen() and open()?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What are the similarities between c and c++?