File: hello.c.orig

package info (click to toggle)
pointerize 0.6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge, squeeze
  • size: 160 kB
  • ctags: 123
  • sloc: ansic: 1,146; makefile: 121; sh: 3
file content (13 lines) | stat: -rw-r--r-- 173 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

void foobar(void) {
	char *foo[]={"I'm alive.\n","I'm here\n"};
	printf(foo[1]);
}

int main (void) {
	printf("Hello world\n");
	foobar();
	exit (0);
}