how to declare a function in c 2b 2b header file

Solutions on MaxInterview for how to declare a function in c 2b 2b header file by the best coders in the world

showing results for - "how to declare a function in c 2b 2b header file"
Alonso
21 Apr 2020
1//somefile.h
2#ifndef SOMEFILE_H
3#define SOMEFILE_H
4int add(int a, int b);
5#endif