把代码过程经常用的代码段做个备份,如下代码是关于C语言基础:指针使用演示的代码,应该是对小伙伴们有一些帮助。
#include <stdio.h>
int main(void)
{
int counter = 10;
printf("Value of counter %dn", counter);
return 1;
}