User profile: soranz

User info
User name:soranz
History
Joined:
Number of posts:472
Latest posts:

Linear search for strings in an Array
The ; on lines 15 and 34 are not necessary. To compare strings use a function like: [code]if( sear...

matlab helping
Isn't there a MATLAB forum - this is c++ :/ ?

example problem with mysql in visual c + +
You may be missing something like this ? #pragma comment(lib, "kernel32.lib") If you are using VS ...

How to create a Folder in c++
This is 1 way... [code] #include <direct.h> int main() { mkdir("c:/myfolder");...

Merge Sort Using Getlines
So far you are immediately printing into the new file what you are reading from the first. To contro...