Skip to content

Instantly share code, notes, and snippets.

@HSchmale16
Created July 28, 2015 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HSchmale16/cd630ba49e9a28699d60 to your computer and use it in GitHub Desktop.
Save HSchmale16/cd630ba49e9a28699d60 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
cout << "Norm" << endl;
cerr << "Err" << endl;
printf("Printf\n");
fprintf(stdout, "stdout printf\n");
fprintf(stderr, "stderr printf\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment