Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 20th, 2010 | Syntax: None | Size: 0.59 KB | Hits: 86 | Expires: Never
Copy text to clipboard
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5.  
  6. #pragma once
  7.  
  8. #include "targetver.h"
  9.  
  10. #include <stdio.h>
  11. #include <tchar.h>
  12. #include <iostream>
  13. #include <string.h>
  14.  
  15. // TODO: reference additional headers your program requires here
  16.  
  17.  
  18.  
  19.  
  20. ///source
  21. // TestApp.cpp : Defines the entry point for the console application.
  22. //
  23.  
  24. #include "stdafx.h"
  25. using namespace std;
  26.  
  27. int main()
  28. {
  29.         string some_string;
  30.         some_string = "test";
  31.         cout << "test: " << some_string;
  32.         return 0;
  33. }