從0開始學習linux C編程

來源:互聯網
上載者:User

我是在windows xp-sp2上使用SSHSecureShellClient-3[1].2.9.exe進行linux C編程的,下面先講一下怎麼使用這個軟體:

在本地安裝SSHSecureShellClient-3[1].2.9.exe,在伺服器上建立使用者名稱和密碼,然後開啟SSH Secure Shell Client,enter鍵或者點擊quick connect,輸入目標機(我不懂,瞎叫)ip,輸入使用者名稱,enter鍵,輸入密碼。現在你應該已經進入linux了,在這裡所有的linux命令都可以使用,新手不妨先敲幾個常用的命令試一下!

下面從最簡單的hello word講到比較複雜的庫引用,當然怎麼寫通用的makefile限於水平,不做討論。

1、hello word

1)、程式:

#include <stdio.h>

int main(void)
{
printf ("hello, word\n");

return 0;
}

名字為helloword.c

2)、運行:

進入SSH Secure Shell Client,使用 《cd 路徑名》進入到你的helloword.c所在的目錄,

然後gcc -o helloword helloword.c,下面將顯示編譯的情況,有錯誤和警告將會列出,沒有則不顯示而返回的你剛才進的目錄,要運行則輸入./helloword, 這樣就會看到hello, word

2、編譯多個.c和.h檔案組成的程式,這時需要寫makefile

1)、程式:

#include "mytool1.h"
#include "mytool2.h"
int main(int argc,char **argv)
{
mytool1_print("hello");
mytool2_print("hello");
}

名字為main.c

#include "mytool1.h"
void mytool1_print(char *print_str)
{
printf("This is mytool1 print %s\n",print_str);
}

名字為mytool1.c

#ifndef _MYTOOL_1_H
#define _MYTOOL_1_H
void mytool1_print(char *print_str);
#endif

名字為mytool1.h

#include "mytool2.h"
void mytool2_print(char *print_str)
{
printf("This is mytool2 print %s\n",print_str);
}

名字為mytool2.c

#ifndef _MYTOOL_2_H
#define _MYTOOL_2_H
void mytool2_print(char *print_str);
#endif

名字為mytool2.h

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.