Teach you how to run C language programs under VS2015

A complete C language code is given above, which is to output "C Language Chinese Network" on the display, as shown below:

#include <stdio.h>

int main(){
   
    
        
    puts("C语言中文网");    
    return 0;
}

In this section, we will take a look at how to run this code through VS2015.

  1. Create a project (Project) To develop a program under VS2015, you must first create a project. Different types of programs correspond to different types of projects. Beginners should learn from the console program.

Guess you like

Origin blog.csdn.net/weixin_54707168/article/details/115015810