0
Char* a="number" char* b=++a; then cout<<++b
how it will run
1 Antwort
0
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
char *a="number";
while (*a!='\0'){
cout<<*a<<setw(10)<<a<<endl;
*a++;
}
return 0;
}