• Welcome to League Of Reason Forums! Please read the rules before posting.
    If you are willing and able please consider making a donation to help with site overheads.
    Donations can be made via here

What is consciousness?

arg-fallbackName="TheGreekDollmaker"/>
/b/artleby said:
Oh wait, an error...

#include <iostream>
#include<FreeWill.h>
using namespace std;
int main()
{
cout << "I am conscious!";
return 0;
}

There we go!

I see that you can program in C++ ?

Through you forgot that its <iostream.h>.
 
arg-fallbackName="Commander Eagle"/>
TheGreekDollmaker said:
Through you forgot that its <iostream.h>.
No, you can just use #include <iostream>. The .h extension is unnecessary. Most C++ programs that I see begin with:
Code:
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
No extension necessary.
 
arg-fallbackName="Wrongfire"/>
Ive always thought consiousness was just all of our brain working together...
Our senses, our ability to analyze, our ability to use and think in a language, and our brain chemistry..
 
arg-fallbackName="Light"/>
Commander Eagle said:
TheGreekDollmaker said:
Through you forgot that its <iostream.h>.
No, you can just use #include <iostream>. The .h extension is unnecessary. Most C++ programs that I see begin with:
Code:
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
No extension necessary.

I think I read in Bruce Eckel's "Thinking In C++" that the .h extension option in include statements, is about backwards compatibility with C or something along those lines.
 
arg-fallbackName="/b/artleby"/>
TheGreekDollmaker said:
I see that you can program in C++ ?

Through you forgot that its <iostream.h>.

iostream.h is an antiquated header that is no longer supported, and as such is goddamned impossible to find (I tried finding one for my students so that I wouldn't have to teach them "using"). Everything formerly within iostream.h is in iostream, but you have to specify that you're using the std namespace. So, in simple speak...

#include<iostream.h>

is equivalent to

#include<iostream>
using namespace std;

So, have I created consciousness?
 
Back
Top