invalid preprocessing directive #include

Hi peoplewould anyone know why and how I get an error with my #include<stdexcept> header file statement?
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#include <iostream>
#inlucde <stdexcept>

using namespace std;

int main()
{

     int a,b,c;
     a = 5;
     b = 0;
     c = a/b;
You have spelled #include wrong.
Because you misspelled "include"... How long have you been doing this, I mean today? You might want to consider taking a break if you honestly couldn't find that on your own.
been studying all day lol yeah I think I'm gonna take break now
Topic archived. No new replies allowed.