Category Archives: C/C++

Tipy a triky na programování v jazyce ANSI C a C++.

Printf doesn’t print anything

In this post, some advise for beginners. Do you need print some debug info using printf and it print at the wrong time or does not print nothing? Don’t remember to flush the buffer, which is in the output. You have to use command fflush (). Stdout is the abbreviation for the standard output to the console. Fflush command can be used when working with files … Continue reading

Posted in C/C++ | Leave a comment

Conversion QString to Char*

Very simple example:

Posted in C/C++ | Leave a comment