#include <iostream>
#include <string>
class Dev
{
private:
std::string _name;
std::string _school;
std::string _location;
public:
Dev(const std::string &name, const std::string &school, const std::string &location);
void code(void) const;
};
int main(void)
{
Dev pquline("Pauline", "École 42", "Paris, France");
pquline.code();
return (0);
}
🤡
- Paris, France
-
19:47
(UTC +01:00)
Highlights
- Pro
Pinned Loading
-
ft_printf_tester
ft_printf_tester PublicA basic C tester for the 42 ft_printf project, comparing return values of printf and ft_printf.
C 2
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.