Use VIM for the first time to write C language programs under Linux

Source: Internet
Author: User


https://blog.csdn.net/zhzht19861011/article/details/4545260


1. Enter the character interface

2. Create a folder for storing source files

mkdir HelloWorld//Create Folder command

CD HelloWorld//Enter the new folder, this should be said that the directory is better, windows with the habit of

Vim MAIN.C//Open vim and create Main.c file

Press I to enter the edit state, the following is the program


#include <stdio.h>

int main ()

{

printf ("Hello world!/n");

return 0;

}


Press ESC to enter command mode, save exit by ZZ

GCC main.c//compile (test.c, assemble, compile, and link to form executable files.) Output file is not specified here, the default output is A.out)

./a.out//Run, default build a.out executable


or use

Gcc-o test MAIN.C//compile build test executable

./test//Run




Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.