C语言指针(三)指针传递给函数

实例1:传递一个无符号的long型指针给该函数

#include<stdio.h>#include<time.h>void getSeconds(unsignedlong*par);int main (){unsignedlong sec;

   getSeconds(&sec );/* 输出实际值 */
   printf("Number of seconds: %ld\n", sec );return0;}void getSeconds(unsignedlong*par){/* 获取当前的秒数 */*par = time( NULL );return;}

打印结果:

Number of seconds :1294450468
上一篇:iOS bug 之 H5 页面没有弹出提示框


下一篇:【其他】【PL/SQL Developer】【1】解决PL/SQL Developer过期的情况