会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
zxfx100
博客园
首页
新随笔
联系
管理
订阅
2012年3月4日
sscanf
摘要: /* sscanf example */#include <stdio.h>int main (){ char sentence []="Rudolph is 12 years old"; char str [20]; int i; sscanf (sentence,"%s %*s %d",str,&i); printf ("%s -> %d\n",str,i); return 0;}Output:Rudolph -> 12
阅读全文
posted @ 2012-03-04 22:01 zxfx100
阅读(204)
评论(0)
推荐(0)
编辑
公告