Distinguish between actual and formal arguments.
No Answer is Posted For this Question
Be the First to Post Answer
What is a file descriptor in c?
which of 'arrays' or 'pointers' are faster?
what is pointer ?
10 Answers Kernex Micro Systems,
Write a program that his output 1 12 123
what are the general concepts of c and c++
What are the three constants used in c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
how to implement stack work as a queue?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What is the difference b/w Structure & Union?
What is the difference b/w Structure & Array?
what are bit fields in c?