Forum: C Jun 4th, 2008 |
| Replies: 7 Views: 2,281 Hi Valdemar
Do you mean console window of a running c program? On win XP you can right click on the console window title, then choose properties and simply change the layout to maximize the... |
Forum: C Jun 3rd, 2008 |
| Replies: 2 Views: 622 Hi booly_joon,
there is something wrong with your conception of two dimensional arrays. I suggest you should start learning some pointer's basic. This... |
Forum: C Jun 3rd, 2008 |
| Replies: 5 Views: 725 nb n qn alrdy slvd n dnwb cpl f dys g: http://www.daniweb.com/forums/thread126961.html |
Forum: C May 24th, 2008 |
| Replies: 7 Views: 6,384 To search for strings in ascii files there exists the amazing Knuth–Morris–Pratt string searching algorithm. It is faster than anything. Try it, and you will be delighted. |
Forum: C May 24th, 2008 |
| Replies: 5 Views: 5,341 Hi scapu,
Don't lose heart!
Pick out an algorithm, for example Newton's method seems to be rather comfortable to compute the square root of a given number. This method is also identical to the... |
Forum: C May 22nd, 2008 |
| Replies: 11 Views: 1,711 Well, then
cout << "natural logarithm (base e) of 7.9454E-18 is " << log(7.9454E-18)
<< "\ncommon logarithm (base 10) of 7.9454E-18 is " << log10(7.9454E-18);
//natural logarithm (base e) of... |
Forum: C May 22nd, 2008 |
| Replies: 11 Views: 1,711 use log10 --> base 10 logarithm, log() is natural logarithm! |
Forum: C May 21st, 2008 |
| Replies: 6 Views: 3,085 Do you ask of how to convert 1.45E-15 in its binary IEEE 754(1987) floating point representation? For example, if length of exponent is 8 and length of mantissa is 23 bits (1+8+23 = 32 bit poor old... |
Forum: C May 21st, 2008 |
| Replies: 5 Views: 742 True, they are taken from MFC class. |
Forum: C May 21st, 2008 |
| Replies: 9 Views: 2,485 Returning to the charge of harsh2327 s request, I personally think that http://www.cppreference.com/ offers a rather complete reference on c++. If you want to know something more about gcc, what is... |
Forum: C May 20th, 2008 |
| Replies: 9 Views: 2,485 |
Forum: C May 19th, 2008 |
| Replies: 9 Views: 2,485 For windows installations codeblocks usually contains the C++ compiler and some other compilers from GCC compiler collections and the GDB debugger from MinGW. This is an outstanding c++ compiler what... |