Print new line from String to file

M

meendar

Hi,

I have an string which is to be appended to some file, if i need
inserting newline within the string what should i do with the String?
i.e.. anything possible as like the example..,


char *c ="This is first line \n
This is second line \n
This is third line \n"


some a.txt:

This is first line
This is second line
This is third line

Thanks in Advance!
 
J

jaysome

Hi,

I have an string which is to be appended to some file, if i need
inserting newline within the string what should i do with the String?
i.e.. anything possible as like the example..,


char *c ="This is first line \n
This is second line \n
This is third line \n"


some a.txt:

This is first line
This is second line
This is third line

Thanks in Advance!

#include <stdio.h>
int main(void)
{
const char *lines =
"This is first line\n"
"This is second line\n"
"This is third line\n";
printf("%s", lines);
return 0;
}
 
M

meendar

#include <stdio.h>
int main(void)
{
const char *lines =
"This is first line\n"
"This is second line\n"
"This is third line\n";
printf("%s", lines);
return 0;

}

Thanks jay
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,575
Members
45,052
Latest member
KetoBeez

Latest Threads

Top