
April 5th, 2002, 08:34 PM
|
|
Contributing User
|
|
Join Date: Sep 2001
Location: Long Beach, California
Posts: 86
Time spent in forums: 3 h 10 m 48 sec
Reputation Power: 12
|
|
|
Not a valid Win32 application?
I made a C program. It's simple, but I got an error when running it on Windows98
Ok, here is the source:
#include <stdio.h>
void main(void)
{
printf("Uploading virus...\a Complete!");
getchar();
}
I compiled it on Linux with:
cc -o virus.exe virus.c
Is it because of the "-o" I added in there? I'm new to C and don't know much. Thanks for the help!
|