home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Whiteline: delta
/
whiteline CD Series - delta.iso
/
progtool
/
gnu
/
gnushell
/
examples
/
main.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-11-25
|
207 b
|
15 lines
#include <stdio.h>
#include "MODUL1.H"
#include "MODUL2.H"
int main(void)
{
char h[] = "hello";
char w[] = "WORLD";
Capital(h);
LowerCase(w);
printf("%s %s\n", h, w);
return 0;
}