`
Phynix
  • 浏览: 11664 次
  • 性别: Icon_minigender_1
  • 来自: 济南
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
解释下面这段代码为什么会输出 i<=c 代码: #include <stdio.h> main() { signed char c = -1; unsigned int i = 1; if(i>c) printf("i>c\n"); else printf("i<=c\n"); } char c是有符号的,没有溢出,怎么解释呢?
先看下面一段代码 #include <stdio.h> main() { unsigned char c = -1; signed int i = 1; printf("%c\n",c); if(c > i) printf("c>i\n"); else printf("c<=i\n"); } 我是在gcc下编译的,奇怪的是表达式printf("%c",c);打印出来的是乱码(一个带有背景的?),但是却是能比较出来 ...
写了个结构体的小测试,个结果发现C语言是不支持按址传递的 #include<stdio.h> #include<stdlib.h> typedef struct Str{ int i; int j; }str; int giveinfo(str &str); int main(){ str str; giveinfo(str); str.i = 89; printf("%d\n",str.i); printf("%d\n",str.j); retur ...
int main(){ printf(); }
呵呵,今天终于搞定系统问题了,就用她了,fedora.写个hellworld,耍耍emacs和vi. public class HelloWorld { public static void main(String args[]) { System.out.println("hello,world."); } }
Global site tag (gtag.js) - Google Analytics