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"); }
文章標籤
全站熱搜
留言列表