Back to article
RCS/hello.c
head 1.4;
access;
symbols;
locks; strict;
comment @ * @;
1.4
date 99.04.04.03.17.28; author sobotka; state Exp;
branches;
next 1.3;
1.3
date 99.04.04.03.15.31; author sobotka; state Exp;
branches;
next 1.2;
1.2
date 99.04.04.03.13.11; author sobotka; state Exp;
branches;
next 1.1;
1.1
date 99.04.04.03.11.29; author sobotka; state Exp;
branches;
next ;
desc
@Hello Warphead program
@
1.4
log
@Made message a variable.
@
text
@#include <stdio.h>
int main(void) {
char *msg = "Hello Warphead!\n";
printf(msg);
return 0;
}
@
1.3
log
@Changed main to return int.
@
text
@d5 3
a7 1
printf("Hello Warphead!");
@
1.2
log
@Included <stdio.h> and formatted.
@
text
@d3 2
a4 1
void main(void) {
d6 2
@
1.1
log
@Initial revision
@
text
@d1 5
a5 1
main(){ printf("Hello Warphead!");}
@
Back to article
|