sscanf函数基本用法

用法1:

从字符串中取数字。

代码如下:

#include
using namespace std;
int main()
{
    char s[]={"(11,LL)"};
    int v;
    sscanf(&s[1],"%d",&v);
    cout<
运行结果:

sscanf函数基本用法_第1张图片

你可能感兴趣的:(函数)