0
When I apply the escape sequence \n im getting a compilation error. Please what can I do to move to the next lineddres
#include <iostream> using namespace std; int main () { int q=47; int w=271; int sum=q+w; cout<<sum; int myaddress=704432; cout<<myaddress; return 0; }
3 ответов
+ 4
cout <<sum << myaddress
0
its working thank you. how can print them both in different lines
0
cout<<sum \n<<myaddress