helpppppi need to print the first N triangular and square numbers (both of them) so if i type 3 it should gi...
functions#include <iostream> #include <cmath> using namespace std; bool function(int n); int main () {...
explinationcan you please explain till the first 17? how do we get there...this is getting more clear for me bu...
explinationint n=12; cout<< n++<<endl;//12 cout<< ++n<<endl;//14 cout<< n+++1<<endl;//15 cout<< ++n+1<<endl...
what is the outputint n=2; switch (n) { case 1 : n=n+1; break; case 2 : n = n+1; case 4 : n...
This user does not accept Private Messages