Advertisements
Advertisements
प्रश्न
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)<< '#';
}
}
उत्तर
22#40#9#13
shaalaa.com
Advantages of Object Oriented Programming Over Earlier Programming Methodologies in C++
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?