gcc 編譯.o 不能執 command not found - Linux

Table of Contents


===hello.c ===
#include<stdio.h>
#include<stdlib.h>
int main(){
prinf("Hello");
return 0;
===hello.c end===

$g++ hello.c
$a.out

出現這個

command not found


--
雲長曰 :“曹操望見煙,知有埋伏,如何肯來?”

孔明笑曰:“豈不聞兵法虛虛實實之論?操雖能用兵,只此可以瞞過他也。
他見煙起,將謂虛張聲勢,必然投這條路來。將軍休得容情。”

--

All Comments

Valerie avatarValerie2011-04-09
./a.out
Connor avatarConnor2011-04-11
太感謝您了~