split printf(" ") on multiple lines

  • Thread starter Thread starter LORD Revan
  • Start date Start date
L

LORD Revan

Guest
hi everybody, i am a newbie. i was curious to know if there is a way to split printf(" long text ") on multiple lines without visual studio prompting an error?


i have a very very long text that I need to print on screen and when I add the printf statement i must keep everything in a single line and scroll all the way to the right to reach the end of my text or split the text in many printf() if i want to avoid scrolling.

is there a way to ensure that visual studio code modify something like this

printf( " part1

part2

part3 ");

in printf("part 1 part 2 part3") during the compilation phase?

Continue reading...
 
Back
Top