打印随机数到字符串中

#include <stdio.h>
#include <time.h>
#include <stdlib.h>

int main()
{
    srand(time(0));
    char s[64];
    int offset=0;
    int i;
    for(i=0;i<10;i++)
    {
        offset+=sprintf(s+offset,"%d,",rand()%100);
    }
    s[offset-1]='\n';
    printf("%s",s);
    return 0;

}

posted on 2014-05-02 11:40  lakeone  阅读(181)  评论(0编辑  收藏  举报

导航