Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

What is the C programming equivalent of...

Name: Anonymous 2010-09-04 13:34

String newline = System.getProperty("line.separator");

Name: Anonymous 2010-09-05 10:14


#include <iostream>
#include <sstream>
#include <string>
using namespace std;

int main() {
    ostringstream oss;
    oss << endl;
    string newline = oss.str();

    return 0;
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List