摘要: 使用C语言处理行输入的时候,使用fgets()。现在我要在某行输入“ENDOFINPUT”的时候,终止处理。所以果断就写了以下:char buf[256];fgets(buf, 256, stdin);while ( strcmp(buf, "ENDOFINPUT") != 0) { ... }按理... 阅读全文
posted @ 2014-11-22 22:37 nipan 阅读(844) 评论(0) 推荐(0) 编辑
摘要: 1. 几个C语言声明的分析char (*j)[20];j = (char(*)[20]) malloc(20); // j是指向数组的指针const int * grape;int const * grape;int * const grape_jelly;const int * const gra... 阅读全文
posted @ 2014-11-22 17:31 nipan 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 一、随机数产生器在OpenCV中,我们主要使用RNG类(即Random Number Generator)来产生随机数。RNG rng(); // 默认以0xffffffff作为随机数产生器的种子我们也可以以系统的当前时间作为随机数产生器的种子。这也是常用的手段。#include RNG rng( ... 阅读全文
posted @ 2014-11-22 16:22 nipan 阅读(484) 评论(0) 推荐(0) 编辑