Tjena alla, igen. nya problem har uppstått. nån som har nån bra sida där jag kan kolla vad man kan göra med system(); "color D1" "cls" är nog d som jag känner till om den. Med system kan du göra allt du kan göra i miljön programmet exekveras i.system();
// man borde väl tex. kunna få text att blinka eller nått annan roligt :) med den?Sv: system();
mao, kör du i dos (eller dosliknande) miljö, kan du utföra de kommandon du kan göra i dos...
Saxat från 'C Runtime Library Reference' :
Syntax
#include <stdlib.h>
int system(const char *command);
int _wsystem(const wchar_t *command);
Description
Issues an operating system command.
system invokes the operating system command processor to execute an operating system command, batch file, or other program named by the string command, from inside an executing C program.
To be located and executed, the program must be in the current directory or in one of the directories listed in the PATH string in the environment.
The COMSPEC environment variable is used to find the command processor program file, so that file need not be in the current directory.
Return Value
If command is a NULL pointer, system returns nonzero if a command processor is available.
If command is not a NULL pointer, system returns 0 if the command processor was successfully started.
If an error occurred, a -1 is returned and errno is set to one of the following:
ENOENT Path or file function not found
ENOEXEC Exec format error
ENOMEM Not enough memory
----------------------------
Så, vill du fortfarande veta vad du kan göra av detta, får du helt enkelt lära dig mer om det operativsystem du programmerar för.
Hoppas svaret hjälpte...
/Ducken