From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9804 invoked by alias); 31 Mar 2003 07:19:57 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 9797 invoked from network); 31 Mar 2003 07:19:57 -0000 Received: from unknown (HELO imag.imag.fr) (129.88.30.1) by sources.redhat.com with SMTP; 31 Mar 2003 07:19:57 -0000 Received: from ecrins (ecrins.imag.fr [129.88.43.124]) by imag.imag.fr (8.12.8/8.12.8) with ESMTP id h2V7JuUT021451; Mon, 31 Mar 2003 09:19:56 +0200 (CEST) Received: from moy by ecrins with local (Exim 3.35 #1) id 18ztaG-00055a-00; Mon, 31 Mar 2003 09:19:56 +0200 To: "Arash Farmand" Cc: gcc-help@gcc.gnu.org Subject: Re: gcc From: Matthieu Moy Mail-Followup-To: "Arash Farmand" , gcc-help@gcc.gnu.org Date: Mon, 31 Mar 2003 07:31:00 -0000 In-Reply-To: ("Arash Farmand"'s message of "Sun, 30 Mar 2003 18:58:33 -0600") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-03/txt/msg00337.txt.bz2 "Arash Farmand" writes: > #include > > int main(void) > { > printf("Hello world!"); You'd better use "Hello world!\n", because the IO are usually buffered by your system, and will not appear until your process outputs a '\n'. But the solution is to call ./a.out, or to add '.' to your $PATH environment variable : PATH=${PATH}:. export PATH using bash. (Type it once in every new shell, or put it in your ~/.bashrc file.) > > return(0); > } BTW, forget about kwrite : you should use Emacs or vi ;-) -- Matthieu