how to invoke the macro in another macro?
Answer Posted / guest
do it normally....
#define HHH(x) (x*x)
#define YYY(y) (y+y)
cout << HHH(YYY(5)) <<endl;
o/p -- 100
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
smal talk is pure object oriented or not?
hi i m deepak my shedule for NIC pi is 17 Apr please contact me if anybody has interview on same day or give me some idea who have faced
what is d main diff between the java and .net framework
Outline the two important features of a terminating recursion. Any ideas?
Hello...has anyone interviewed with Information Management Services(IMS)located in Silver Spring MD??If yes,what can you share about the programming test and the analytical test?
Write a function which accepts a sentence as input parameter.Each word in that sentence is to be reversed. Space should be there between each words.Return the sentence with reversed words to main function and produce the required output. for eg:- i/p: jack jill jung kill o/p: kcaj llij gnuj llik
what is client server & server? What r types of Joins? explsin it! which types of indexex in sql server? what is triggers?
what is the difference between Windows application and Unix application?
Difference between debugging, running, executing of an application
What sysoption determines where the macro facility searches a specific catalog for complied macro?
9.Difference between even and odd signals?explain with the diagram?
Can i please VHDL code for D-Latch with clear input ?? (HINT: Set up a “Process” with appropriate sensitivity list to get the desired D-Latch with Clr working.) Inputs and Outputs: entity Lab4b is Port ( Clr, Clk, D : in STD_LOGIC; Q : out STD_LOGIC); end Lab4b;
Hi All, Can any one please send me the difference between informatica 7i and 8i versions, Thanks in advance. vinod
In an customer exit (include Z) program, only the last record is getting fetched. The exit is getting called after pressing save button. What to write for fetching the first record ? Before saved to a SAP table how can i call all these records in an itab in the exit ?
1. Consider the following input and generate the object code using single pass assembler. JOHN START 0 USING *,15 L 1,FIVE A 1,FOUR ST 1,TEMP FOUR DC F’4’ FIVE DC F’5’ TEMP DS ‘F END