initial checkin from subversion
This commit is contained in:
16
pointer_char3.c
Normal file
16
pointer_char3.c
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user