initial checkin from subversion

This commit is contained in:
Tretter
2017-02-07 20:03:49 +00:00
commit ed54469421
108 changed files with 1999 additions and 0 deletions

16
pointer_char3.c Normal file
View File

@@ -0,0 +1,16 @@
#include <stdio.h>
int main()
{
//char **Pc=(char**) malloc(11*(sizeof(char*)));
char *Pc[110000];
char a;
int i;
for (i=0;i < 11000 ; i++)
{
Pc[i]="Kuhl ist dodahl guddie ohne Kombromiesen ;-))\n";
}
for (i=0;i < 11;i++)
printf("%s",Pc[i]);
a=getchar();
}