verification-helper

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub online-judge-tools/verification-helper

:heavy_check_mark: examples/debug/relative_path.test.cpp

Depends on

Code

#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ITP1_1_A"
#include <cstdio>
#include "./a/b/c/foo.hpp"
#include "d/e/f/g/foo.hpp"
#include "examples/debug/h/i/j/k/l/foo.hpp"

int main() {
    printf("%s\n", hello);
    return 0;
}
#line 1 "examples/debug/relative_path.test.cpp"
#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ITP1_1_A"
#include <cstdio>
#line 2 "examples/debug/relative_path.hpp"
char *hello = "Hello World";
#line 6 "examples/debug/relative_path.test.cpp"

int main() {
    printf("%s\n", hello);
    return 0;
}
Back to top page