Answers for "Include file in c++"

C++
1

include cpp

#include <iostream>
#include "foop.h"

int main(int argc, char *argv[])
{
int x=42;
std::cout << x <<std::endl;
std::cout << foo(x) << std::endl;
return 0;
}
Posted by: Guest on February-04-2021
2

what is a header in c++

// my_class.h
#ifndef MY_CLASS_H // include guard
#define MY_CLASS_H

namespace N
{
    class my_class
    {
    public:
        void do_something();
    };
}

#endif /* MY_CLASS_H */
Posted by: Guest on May-17-2020
0

what is a header in c++

// my_class.h
namespace N
{
    class my_class
    {
    public:
        void do_something();
    };

}
Posted by: Guest on May-17-2020

Browse Popular Code Answers by Language