C语言程序设计(湖大829)
Cody-Wang
固件开发工程师
展开
-
湖大829 库函数的调用
熟练掌握标准库函数的调用常用数学函数:cos、sqrt、pow、exp、fabs、log、log10等 常用字符函数:isalnum、isalpha、isdigit、islower、toupper等 常用字符串函数:strcpy、strcmp、strcat、strlen等一、常用的数学函数expdouble exp( double arg ); 说明:计算...原创 2019-08-28 14:13:38 · 379 阅读 · 2 评论 -
C++有关Struct的问题
#include <stdio.h>#include <stdlib.h>struct test{ test(int n) { printf("test(%d)\n",n); } test() { printf("test()\n"); } void fun() { ...原创 2019-09-07 20:21:21 · 207 阅读 · 0 评论