Chessmaster2010
Grünschnabel
Hi,
folgendes Programm habe ich (ab-)geschrieben:
/* sekunden.c*/
/* Ein /Programm, das eine Pause realisert.*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void sleep( int nbr_seconds );
int main( void )
{
int x;
int wait = 13;
/* Pause für eine Anzahl von Sekunden. Gibt für jede *
* gewartete Sekunde einen Punkt aus.
printf("Pause für %d Sekunden\n", wait);
printf(">");
for (x=1; x <= wait; x++)
{
printf("."); /* Einen Punkt ausgeben */
fflush(stdout); /* Ausgabe bei gepufferter Ausgabe erzwingen */
sleep( (int) 1 ); /* Eine Sekunde Pause */
}
printf( "Fertig!\n");
return (0);
}
/* Pausiert für eine festgelegte Anzahl von Sekunden */
void sleep( int nbr_seconds )
{
clock_t goal;
goal = ( nbr_seconds * CLOCKS_PER_SEC ) + clock();
while( goal > clock() )
{
;/* Schleifenanweisung */
}
}
Fehlermeldungen:
27 C:\Dev-Cpp\sekunden.c syntax error before string constant
27 C:\Dev-Cpp\sekunden.c conflicting types for 'printf'
27 C:\Dev-Cpp\sekunden.c a parameter list with an ellipsis can't match an empty parameter name list declaration
27 C:\Dev-Cpp\sekunden.c conflicting types for 'printf'
27 C:\Dev-Cpp\sekunden.c a parameter list with an ellipsis can't match an empty parameter name list declaration
27 C:\Dev-Cpp\sekunden.c [Warning] data definition has no type or storage class
Hoffe, es kann mir jemand weiterhelfen..))
Danke schon mal
folgendes Programm habe ich (ab-)geschrieben:
/* sekunden.c*/
/* Ein /Programm, das eine Pause realisert.*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void sleep( int nbr_seconds );
int main( void )
{
int x;
int wait = 13;
/* Pause für eine Anzahl von Sekunden. Gibt für jede *
* gewartete Sekunde einen Punkt aus.
printf("Pause für %d Sekunden\n", wait);
printf(">");
for (x=1; x <= wait; x++)
{
printf("."); /* Einen Punkt ausgeben */
fflush(stdout); /* Ausgabe bei gepufferter Ausgabe erzwingen */
sleep( (int) 1 ); /* Eine Sekunde Pause */
}
printf( "Fertig!\n");
return (0);
}
/* Pausiert für eine festgelegte Anzahl von Sekunden */
void sleep( int nbr_seconds )
{
clock_t goal;
goal = ( nbr_seconds * CLOCKS_PER_SEC ) + clock();
while( goal > clock() )
{
;/* Schleifenanweisung */
}
}
Fehlermeldungen:
27 C:\Dev-Cpp\sekunden.c syntax error before string constant
27 C:\Dev-Cpp\sekunden.c conflicting types for 'printf'
27 C:\Dev-Cpp\sekunden.c a parameter list with an ellipsis can't match an empty parameter name list declaration
27 C:\Dev-Cpp\sekunden.c conflicting types for 'printf'
27 C:\Dev-Cpp\sekunden.c a parameter list with an ellipsis can't match an empty parameter name list declaration
27 C:\Dev-Cpp\sekunden.c [Warning] data definition has no type or storage class
Hoffe, es kann mir jemand weiterhelfen..))
Danke schon mal