Infile incomplete type error
- by kd7vdb
I am building a program that takes a input file in this format:
title author
title author
etc
and outputs to screen
title (author)
title (author)
etc
The Problem I am currently getting is a error "ifstream infile has incomplee type and cannot be defined"
#include <iostream>
#include <string>
#include…