0
This Is About C!
I Was Doing 2 Text Of C Code But After Print Two Text They Stick In Like This printf("User"); printf("User Account"); Result User User Account Thats Wrong What I Want Is User User Account Please Help Me! Direct Code Link: https://code.sololearn.com/cyqU9fOphw0N/?ref=app
3 Respostas
+ 4
You mean like this ? 👇
https://code.sololearn.com/cgVc8c2dmG2r/?ref=app
0
U have given \n in printf("user") remove it u will ur desired output
Catafrancia Mapper
0
Use newline (\n) to make the preceeding line into new line
printf("User");
printf("\nUser Account");