printf以前不知道的使用方式

MoonXu發表於2024-08-12

#include <stdio.h>

int main()
{
char *p[] = {"asdf"};
printf(p[0]);
char *m = "hello";
printf(m);
}

相關文章