Answers for "how does include work 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

Browse Popular Code Answers by Language