User: Episteme

  • Public profile

User profile: Episteme

User info
User name:Episteme
History
Joined:
Number of posts:8
Latest posts:

Clarify rand()
http://www.cplusplus.com/reference/clibrary/cstdlib/rand/ Firstly, you need to seed the rand() func...

Variable being used without being initialised even though it is
When you initialized the array with ar[17] the compiler will give you the range ar[0] - ar[16] only....

Variable being used without being initialised even though it is
Yeah your mistake was in the for loop. [code]for(int i=0; i<(ar[17]-1); ++i)[/code] calling ar[17]...

Variable being used without being initialised even though it is
It works fine for me, but give your array one more slot for the NULL value, you should always give i...

Converting from Fahrenheit to celsius.
[code]#include <iostream> #include <iomanip> using namespace std; void programOverview (); void cal...

This user does not accept Private Messages