What do .c and .h file extensions mean to C?

前端 未结 6 1589
有刺的猬
有刺的猬 2020-12-04 08:29

It\'s all in the title; super-simple I reckon, but it\'s so hard to search for syntactical things anywhere.

These are two library files that I\'m copying from CS50.n

6条回答
  •  醉酒成梦
    2020-12-04 09:00

    .c : 'C' source code
    .h : Header file
    

    Usually, the .c files contain the implementation, and .h files contain the "interface" of an implementation.

提交回复
热议问题