Wednesday, August 1, 2012

C PROGRAMMING IN LINUX


C PROGRAMMING IN LINUX

DAVID HASKINS 



/***************************************************************** C Programming in Linux (c) David Haskins 2008
chapter1_1.c  

Open an editor (in KDE,  kate, or in Gnome, gedit) and type 

in (or copy from the supplied source code 
zip bundle) the following: 
*****************************************************************/

#include <stdio.h>
int main(int argc, char *argv[])
{
printf("Hello, you are learning C!!\n");  
return 0;
}




No comments:

Post a Comment