10 lines
130 B
C
10 lines
130 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
int main()
|
|
{
|
|
char val[10] = "abcdefghkl";
|
|
val[0] = NULL;
|
|
printf("%s\n", val);
|
|
}
|