我想背电脑

来源:百度知道 编辑:UC知道 时间:2024/06/22 02:40:02
我想背C语言,谁能把要背的东西给我啊,要有注释最好

百度一下“c语言函数大全”,打开个页面背去吧。

背C语言?
荒唐

C语言很难的,学过来也没多大用。

给你这个 "C语言", 背好啊

里古里古

先把你的系统的基本知识学会了,再研究c语言吧不可能一蹴而就的
举几个例子,像这样的怎么背,刚接触的肯定根本看不懂什么意思,你觉得呢
函数名: abort
功 能: 异常终止一个进程
用 法: void abort(void);
程序例:
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
printf("Calling abort()\n");
abort();
return 0; /* This is never reached */
}

函数名: abs
功 能: 求整数的绝对值
用 法: int abs(int i);
程序例:
#include <stdio.h>
#include <math.h>

int main(void)
{
int number = -1234;

printf("number: %d absolute value: %d\n", number, abs(number));
return 0;
}