First C program
First C program is "Hello Digiwonder"
Program:- hellodigi.c
#include<stdio.h>
int main()
{
printf("Hello Digiwonder") ;
return 0;
}
How to Compile:-
[root@localhost]# gcc hellodigi.c
How to Execute:-
[root@localhost]# ./a.out
Output:-
Hello Digiwonder
Program:- hellodigi.c
#include<stdio.h>
int main()
{
printf("Hello Digiwonder") ;
return 0;
}
How to Compile:-
[root@localhost]# gcc hellodigi.c
How to Execute:-
[root@localhost]# ./a.out
Output:-
Hello Digiwonder
Comments
Post a Comment