从proc中哪个文件可得到系统已经运行的时间?

从proc中哪个文件可得到系统已经运行的时间?

/proc不是真正的文件系统,而是访问内核数据结构的接口。
想知道系统启动以来运行了多长时间[How long (in days, hours, and minutes) has it been since the system was last booted?],要求编一个小程序用fopen,fgets等函数读取合适的文件的内容,最后用printf在屏幕上输出。

我的问题是哪个文件中有这个信息啊?man proc太长了,搜索我也没找到,谁能告诉我一声?
/proc/uptime
谢谢!