[Solved] Installing root library in VS13

“#include <TCanvas>” int main(){ return 0; } This program is syntactically wrong. For some reason you have surrounded an entire #include statement with double quotes. Have you tried: #include “TCanvas.h” int main(int argc, char **argv) { return 0; } Edit: Well, you edited your post (twice as I was typing this!), changing everything and now … Read more