sscanf 函数//取出前4个字符1234#include<stdio.h>#include<string.h>int main(){ char str[100]; sscanf("12345","%4s",str); ...
確定! 回上一頁