macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
Answers were Sorted based on User's Feedback
What is external variable in c?
IS Doon college of Engn.. has good faculty
What are .h files and what should I put in them?
What is Heap?
What are the types of unary operators?
What are identifiers and keywords in c?
Can a program have two main functions?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
In which header file is the null macro defined?
Is c procedural or object oriented?
What's the total generic pointer type?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?