随笔分类 - Program
编程相关,虽然本人主要从事硬件编程,使用Verilog,但是也会涉及C/C++/Python等高级语言,及shell/perl等脚本语言
摘要:在C++中const限定的指针类型常常令人困惑,现整理如下,以整型为例,主要区分如下三个例子 const int * p; int * const p; const int * const p; 其实就是2种情况,const在int前及const在变量名前,第三种及叠加了前两种限定 CONST概念
阅读全文
摘要:C #include <stdio.h> int main(){ printf("hello world\n"); return 0; } 编译使用 gcc helloworld.c C++ #include <iostream> int main(){ std::cout << "hello wo
阅读全文