#include <stdio.h> int main() { char *q; char *p = "sweta"; q = ++p++; printf("%s", q); }
什么是输出是这个程序有效,因为它给出了所需的l值的错误.
c
c ×1