Newer
Older
src / c / c-tutorial / vars.c
#include <stdio.h>

int main () {
	int a = 5;
	int b = 100, c = 12345;
	printf("Wert von int a=%d, b=%d, c=%d\n",a,b,c);
	return 0;
}