- 浏览: 11664 次
- 性别:
- 来自: 济南
-
最新评论
-
Phynix:
恩,有道理,谢谢,明白了~
char 类型和int比较大小 -
mikeandmore:
先看下面一段代码
#include <stdio.h ...
char 类型和int比较大小 -
sdh5724:
unsigned char c = -1; 你还给-1啊
char 类型和int比较大小
文章列表
解释下面这段代码为什么会输出 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是有符号的,没有溢出,怎么解释呢?
- 2008-12-29 21:00
- 浏览 1047
- 评论(0)
先看下面一段代码
#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);打印出来的是乱码(一个带有背景的?),但是却是能比较出来 ...
- 2008-12-27 16:50
- 浏览 5984
- 评论(3)
写了个结构体的小测试,个结果发现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 ...
- 2008-11-08 16:15
- 浏览 3020
- 评论(0)
呵呵,今天终于搞定系统问题了,就用她了,fedora.写个hellworld,耍耍emacs和vi.
public class HelloWorld {
public static void main(String args[]) {
System.out.println("hello,world.");
}
}