c_cpp C中的功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp C中的功能相关的知识,希望对你有一定的参考价值。

#include <cs50.h>
#include <stdio.h>

int square(int n);  \\declare this function before "main"

int main(void)
{
	int x=get_int("x: ");
	printf("%i\n", square(x));
}

int square(int n)   \\add this function after "main"
{
	return n*n;
}

以上是关于c_cpp C中的功能的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp C中的日志功能/文件/行

c_cpp C中的基本用户输入功能

c_cpp c中的字符串反转功能

c_cpp c中的示例扫描功能可以打印所有数字

c_cpp [功能代码中的site_begin函数]在site_begin中做了什么,测试流的开始#Magnum2

c_cpp c防止零分裂的功能