5 lines
82 B
C
5 lines
82 B
C
#include <stdio.h>
|
|
int main() {
|
|
char *p = "Hello world!";
|
|
printf("%c", *p);
|
|
}
|