1
2
3
4
5
6
7
8
9
#include <stdio.h>
int main(int argc, char * argv[])
{
	if (argc = 10+1) {
		printf("10 Argumente!\n");
	}
	return 0;
	printf("Programm beendet\n");<--- Statements following return, break, continue, goto or throw will never be executed.
}