Advertisements
Advertisements
Question
Find and write the output of the. following C++ program code
Note : Assume au· required header files are already included in the program.
#define Diff(N1,N2) ((N1>N2)?Nl-N2:N2-N1)
void main()
{
int A,B,NUM[] = {10,23,14,54,32};
for(int CNT =4; CNT > 0; CNT--)
{
A=NUM[CNT];
B=NUM[CNT-1];
cout<<Diff(A,B)<< '#';
}
}
Solution
22#40#9#13
shaalaa.com
Advantages of Object Oriented Programming Over Earlier Programming Methodologies in C++
Is there an error in this question or solution?