how to invoke the macro in another macro?
Answer / 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 |
can anyone please tell me the procedure for the NIC personal interview as i have been selected for the post of scientist/technical assistant B
how we define two jobs have same name??is it exist??
is it possible to desable particular parameter of the normal orcle report based on some condition ?????? if yes,wht is the function for desabling a parameter...
what is runtime exception and compiletime exception ?
1.how to deploy the Maven application in weblogic server? 2.In Real time projects all classes are singleton or some classes only singleton explain? 3.what are the major uses of the designpatterns? 4.explain restful &Soap based services explain?
How to print No.of.rows affected after updation using ADO.Net
what is dynamic polymorphism?
How can recruiter justified that the candidate is expert in Algorithm and datastructure for Software product development ?
Create a class TicTacToe that will enable you to write a complete program to play the game of Tic-Tac-Toe. The class contains as private data a 3- by-3 double array of integers. The constructor should initialize the empty board to all zeros. Allow two human players. Wherever the first player moves, place a 1 in the specified square; place a 2 wherever the second player moves. Each move must be to an empty square. After each move determine whether the game has been won and whether the game is a draw. If you feel ambitious, modify your program so that the computer makes the moves for one of the players automatically. Also, allow the player to specify whether he or she wants to go first or second. If you feel exceptionally ambitious, develop a program that will play three-dimensional Tic-Tac-Toe on a 4-by-4-by-4
What is a dialog based program
I HAVE DONE TESTING TOOLS COURSE,NOW I AM FRESHER,I AM NOT GETTING ANY CALLS,I WANT TO DO THE PROJECT ,WHERE I HAVE TO MEET TO DO THE PROJECT,I AM GOING WITH FAKE EXPERIENCE,SO WHAT I HAVE TO DO.
Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fit" instead of the number and for the multiples of five print "Bit". For numbers which are multiples of both three and five print "FitBit".