thomas: kennt sich jemand mit C aus?

Beitrag lesen

#include <stdio.h>
#include <conio.h>

void tabelle(void);
void ASCII(void);
void taschenrechner(void);
void zeichenausgabe(void);

int main(void)

{
 int z;

do{
  printf("Waehlen Sie ein Programm aus\n\n");
  printf("Programm  1 - Datentypen\n");
  printf("Programm  2 - ASCII-Tabelle\n");
  printf("Programm  3 - Taschenrechner\n");
  printf("Programm  4 - Zeichenausgabe\n");
  printf("Exit      5\n");
  printf("\nEingabe   ");

z = 0;
  scanf("%d", &z);

printf("\n\n");

if(  z==1) tabelle();
  else if(z==2) ASCII();
  else if(z==3) taschenrechner();
  else if(z==4) zeichenausgabe();
 }while(z==1 || z==2 || z==3 || z!=5);

return 0;
}

was fehlt jetzt noch? wie gebe ich das genau aus?
sorry bin anfänger in der materie