c
文章平均质量分 76
南下狩猎的小花猫
天生喜欢编程,就像自己喜欢地理一样,热爱到骨子里。
工作使用7年多的Java、JavaScript;
工作之外研究ANSI C、Python
展开
-
C语言精髓简练教程
#include <stdio.h> #ifndef __POINTER_S_H__ #define __POINTER_S_H__ //开始指针 //指针大小8字节 //指针数组(指针指向数组地址)、数组指针(数组里面全是地址) //void *表示未知类型的指针 //一般指针和数组、字符串指针 extern void pointer_test(); #endif #include "pointer_s.h" void pointer_test(){ //测试指针8字节 i原创 2021-04-30 17:19:02 · 176 阅读 · 1 评论 -
C语言二维数组之数组指针
#include <stdio.h> #include <stdlib.h> int main() { //数组 int a[5] = {1,2,3,4,5}; int *p = a; int *q = &a; int *r = &a[0]; printf("0x%p\n",p + 1); printf("0x%p\n",q + 1); printf("0x%p\n",r + 1); print原创 2020-07-24 17:46:03 · 191 阅读 · 0 评论 -
CodeBlocks链接时报未找到错误 undefined reference to
默认情况之下,自己的xx.h,xx.c文件不在编译连接之内,死活找不到xx.h里面的函数,原来codeblocks默认不会编译连接,坑!!! https://blog.csdn.net/u011040361/article/details/44459617 ...转载 2019-07-09 15:20:26 · 460 阅读 · 0 评论 -
Linux下C语言的一道经典面试题
如果在Linux下使用GCC编译器执行下列程序,输出结果是什么? https://segmentfault.com/q/1010000009925191 #include<stdio.h> int main(){ char c=127; printf("%d",++c); printf("%d",++c); return 0; } ...转载 2019-09-25 16:45:13 · 343 阅读 · 1 评论