Answers for "how to declare a function in c++ header file"

C++
0

how to declare a function in c++ header file

//somefile.h
#ifndef SOMEFILE_H
#define SOMEFILE_H
int add(int a, int b);
#endif
Posted by: Guest on August-20-2021

Code answers related to "how to declare a function in c++ header file"

Browse Popular Code Answers by Language