I am getting random characters as output.
Here is my sublime build code:
{
  "cmd" : ["g++ -std=c++14 $file_name -o $file_base_name && ./$file_base_name < inputf.in > outputf.in"], 
  "selector" : "source.c, source.c++",
  "shell": true,
  "working_dir" : "$file_path"
}
Can anyone help me out resolving this?
 
    