Untitled
By: a guest | Mar 20th, 2010 | Syntax:
None | Size: 0.59 KB | Hits: 86 | Expires: Never
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <string.h>
// TODO: reference additional headers your program requires here
///source
// TestApp.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
using namespace std;
int main()
{
string some_string;
some_string = "test";
cout << "test: " << some_string;
return 0;
}