Posted by jyredevil.
Apr
6
Posted by jyredevil.
Encoded message
7th April 2007, Saturday, Off day
#include <stdio.h>
#include "araydef.h"
void main()
{
char msg[SIZE];
int i=0;
msg[0]="槟";
msg[1]="威";
msg[2]="大";
msg[3]="桥";
msg[4]="有";
msg[5]="炸";
msg[6]="弹";
printf (" The message is as below: \n");
while( i < 7) {
putchar(msg[i]);
i++;
}
}
~ To be continued ……~
There are 0 comments to this post.
Add Your Comment.