Write a printf() statement that prints out the following output
1
2
3
Answers
Answered by
0
C0DE
#include<stdio.h>
int main(){
printf("1\n 2\n 3\n");
return 0;
}
Output
1
2
3
Use \n this prints in the next line.
Similar questions