下面这个程序是让算出 密码 , 第一个出来是passworD,第二个是xyz+ 任何一个字符
后面的3个我就看不明白了,大侠们帮我看看, 从 87 行 - 110行, 是3个密码,谢谢
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4 #include <sys/types.h>
5 #include <sys/stat.h>
6
7 #define P1 "\x70\x61\x73\x73\x77\x6F\x72\x44"
8 #define P2 "\130\131\132"
9 #define P3 "halt"
10 #define FSIZE 0xFFF
11 static int sleepfor = 5;
12 struct stat st;
13
14 void thinking()
15 {
16 int i;
17 int reps;
18 int secs;
19
20 sleepfor = sleepfor * 2;
21 reps = (sleepfor / 10 < 1 ? 1 : sleepfor / 10);
相关问答:
都说网上有好多,但我一直没找到。如果您知道,请告诉我详细的下载地址。要大型项目或是架构比较好的。
您也不提51aspx了。上面的东西是不错,但我想要架构比较好的。。
我想看看他们是怎么做项目整合 ......
第一题:
struct struct_A{
int a;
char b;
int c;
short d;
};
struct_A *p = NULL;
sizeof(p)等于多少?
第二题: ......
我想获得当前的时间,windows mobile上能用time_t time(time_t *timer)函数,提示lnk错误。为什么不能用呢? 需要增加什么连接库吗?名字是什么?
清楚的记得 c库的time_t是可以使用的,应该是其他的问题导致的。
......
1.为什么定义函数时:fun1 可以正确的返回而fun2不行?
char * fun1()
{
char *p = "haha";
return p;
}
char * fun2()
{
char p[] = "haha&quo ......
有这样两个问题,希望高手指点:
第一:
struct struct_A{
int a;
char b;
int c;
short d;
}
struct struct_B{
int a;
char b;
short c;
......