1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
|
# include <cstdlib>
# include <iostream>
# include <stdio.h>
using namespace std;
char coded[10];
char decoded[10];
int main(int argc, char *argv[])
{
FILE* file;
file = fopen("code.dec","r");
if(!file)
{
printf("Depp! Fehler!\n");
return 0;
}
else
{
printf("file ok!\n");
}
while(!feof(file))
{
fgets(coded,10,file);
}
for(int i=0; i<10; i++)
{
cout << "port: " << i << " Data: " << coded[i] << endl;
}
if(coded[0]==1)
{
printf("it worx!");
decoded[0] = 'a';
}
system("PAUSE");
return EXIT_SUCCESS;
}
|