- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Anime and Manga Addict.
- Interests
- Anime,Manga,Computers,Programming,Hacking
- PC Specs
- It runs Linux :)
12 Posted Topics
Re: One thing that really bothers me is that all computers make sounds. And that their typing is off with what happens on the screen. | |
| |
Re: I like to use Arch Linux. Becouse i helped me learn Linux and its fast and lightweight. You start of bare bone and then build up to your liking. Its really interesting and got a great Wiki and commmunity backing it. | |
Re: Great tutorial,Realy informative and great for beginners. You really did well on explaining functions in general. Also i like that you pointed out the return types. They mostly end up further in the books. Keep up the good work mate! | |
I can't see to wrap my head arround the meaning of this error. Its becouse im converting integer functions to character functions. src/dataio.cpp: In function ‘char* getName(char)’: src/dataio.cpp:118:17: error: invalid conversion from ‘char’ to ‘char*’ [-fpermissive] readUser(uid); ^ src/dataio.cpp:60:6: note: initializing argument 1 of ‘void readUser(char*)’ void readUser(char* uid) ///Reads … | |
I keep getting coredumps when i run this function. void readUser(int uid) ///Reads users from data directory { std::stringstream fileName; fileName << "./data/" << uid << ".dat"; user myUser; std::cout << "USERNAME:" << myUser.name << "\n UID:" << myUser.uid; ///Reads data from file FILE* dat = fopen(fileName.str().c_str(),"rb"); fread(&myUser, sizeof(user), 1, … | |
Hello, The reason why im asking for this is becouse im currently making a project that needs data storage. And sqlite seems to be perfect for that matter. I've already read the documentation of Sqlite3 but i found that insufficient. It didn't really explain much besides the obvious. I can … | |
![]() | Re: #include <iostream> main(int argc,char **argv) { std::cout << "This is a test" << std::endl; return 0; } Forgot sometin :) |
Re: I recommend avoid using `system("pause").` Instead use `cin.getchar()` Also its sarter to ditch `using name space std;` Becouse using scopes like this `std::cout` will prevent conflicts between variable names and the function from std. | |
Re: Where are you going to use Hamachi for exacly? Private networking/Serverhosting<(I'd reccomend Port Forwarding.) I know some well working alternatives but i need to know what you are going to use it for? |
The End.