Can you explain the four storage classes in C?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by dynamic memory allocation in c?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
who is the father of C Language?
20 Answers CTS, UST,
Write a program to swap two numbers without using the third variable?
Where define directive used?
What is a node in c?
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
How would you sort a linked list?
program to find the roots of a quardratic equation
write a program of palindrome(madam=madam) using pointer?
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
wat s the meaning of (int *)p +4;