Find the mistakes

Hey everybody
i search the mistakes in my Code, can anybody help me please?


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <stdio.h>
#include <stdlib.h>

void f1(int);
void f1 (int c){           
  return 0;
}

int f2 (char c, char c){
  printf(" ");
  return (3.5);
}

void f1(int a, int b, int c){
  printf("gib irgendetwas aus");
  return;
  printf("Schluss jetzt");
}

int f3(){
  f0(0); 
}


void f0(){
  printf("nix besonderes\n");
}

int main(){
  f1(1);
  f2(A,B);
  f3(1);
  f();
  return EXIT_SUCCESS;
}
Last edited on
Smells like homework.

I'll help you by telling that if you do compile "your code" and your compiler is set to be verbose, you will get plenty of hints. That should get you started.
i search the mistakes in my Code


It's not your code, rather your assignment.
Topic archived. No new replies allowed.