Will Macros support multiple arguments ?

Answer Posted / phani kumar s

yes they will support multiple arguments

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between the expression “++a” and “a++”?

705


how to build a exercise findig min number of e heap with list imlemented?

1612


Explain how do you determine the length of a string value that was stored in a variable?

670


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

590


What is the purpose of void pointer?

599






explain how do you use macro?

667


Combinations of fibanocci prime series

1114


Is c++ based on c?

655


What do you mean by a local block?

632


What are logical errors and how does it differ from syntax errors?

661


List some applications of c programming language?

552


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2337


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2000


What does a function declared as pascal do differently?

607


What is pass by reference in functions?

325