Waitrud Weber’s blog

things and reminders for memories

2019-01-12から1日間の記事一覧

Specification of :va_arg( *p_ap, char* );

We must care about printf("%c", c);c means natually "char c;" char* vc;char* vs;vs = va_arg( *p_ap, char* );// Not: vc = va_arg( *p_ap, char ); And program executed very smooth if you use malloc to print something to memories. The fllowing…