File: msg-init.c

package info (click to toggle)
gccintro 1.0-5
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid, trixie
  • size: 3,028 kB
  • sloc: ansic: 1,004; sh: 506; cpp: 172; makefile: 16
file content (12 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

FILE *stream = stdout;  /* not constant */
int i = 10;
int j = 2 * i;          /* not constant */

int
main (void)
{
  fprintf (stream, "Hello World!\n");
  return 0;
}