macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration

Answer Posted / hemalatha g.j.

d.type declaration

Is This Answer Correct ?    10 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of c language in real life?

531


can anyone suggest some site name..where i can get some good data structure puzzles???

1643


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

784


Explain 'bus error'?

563


What is New modifiers?

672






How many levels of pointers can you have?

706


Explain what happens if you free a pointer twice?

614


When should volatile modifier be used?

557


we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

638


Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

837


What are linker error?

615


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

684


What is the g value paradox?

646


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??

1544


Can a variable be both constant and volatile?

563