close

Use Visual Studio 2010 Compiler C Programming.

Example Source Code:

// cplusplus.cpp : 定義主控台應用程式的進入點。
//

#include "stdafx.h" // 不可刪除
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{
	printf("test");
	return 0;
}

Example Source Code:

// cplusplus.cpp : 定義主控台應用程式的進入點。
//

#include "stdafx.h" // 不可刪除
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

int _tmain()
{
	printf("test");
        return 0;
}

Example Source Code:

// cplusplus.cpp : 定義主控台應用程式的進入點。
//

#include "stdafx.h" // 不可刪除
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

void _tmain(int argc, _TCHAR* argv[])
{
	printf("test");
}

Example Source Code:

// cplusplus.cpp : 定義主控台應用程式的進入點。
//

#include "stdafx.h" // 不可刪除
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

void _tmain()
{
	printf("test");
}

Example Source Code:

// cplusplus.cpp : 定義主控台應用程式的進入點。
//

#include "stdafx.h" // 不可刪除
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

int main(int argc,char *argv[])
{
	printf("test");
	return 0;
}

Example Source Code:

// cplusplus.cpp : 定義主控台應用程式的進入點。
//

#include "stdafx.h" // 不可刪除
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

int main()
{
	printf("test");
	return 0;
}

Example Source Code:

// cplusplus.cpp : 定義主控台應用程式的進入點。
//

#include "stdafx.h" // 不可刪除
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

void main(int argc,char *argv[])
{
	printf("test");
}

Example Source Code:

// cplusplus.cpp : 定義主控台應用程式的進入點。
//

#include "stdafx.h" // 不可刪除
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

void main()
{
	printf("test");
}
arrow
arrow

    mitblog 發表在 痞客邦 留言(0) 人氣()