New Paste :: Recent Pastes:: No Line Numbers
A Paste by luke
1
// test.h #ifndef TEST_H_INCLUDED_ #define TEST_H_INCLUDED_ static const char array[] = {'a', 'b', 'c'}; #endif // main.cpp #include <iostream> #include "test.h" int main() { std::cout << array << std::endl; return 0; }