I dont want to newline after scanf.
printf("I am ");
scanf("%d", &age);
printf(" years old");
This output is;
I am 19
years old.
But i want to like this:
I am 19 years old.
I dont want to newline after scanf.
printf("I am ");
scanf("%d", &age);
printf(" years old");
This output is;
I am 19
years old.
But i want to like this:
I am 19 years old.
Copyright © 2021 Jogjafile Inc.
You're not using scanf() properly. The function scanf() takes in user input and then stores it in a variable, and in your case that would be the variable 'age'. After that you can place the variable age in the printf() statement like this.
That code will first wait for the user to enter an age then it would print the sentence:
The reason your screen is displaying your output on two lines is because the, "scanf("%d", &age);" requires you to hit enter after you type in a number (which creates a new line) in order for "printf(" years old");" to execute. Also, when you are hitting enter in your code, the number being stored in the variable 'age' isn't doing anything. You're just storing it for no reason.