Search:

Type: Posts; User: Ubiquitous

Search: Search took 0.26 seconds.

  1. Re: I cannot figure out what the errors mean nor how to correct them. Please help.

    There is a difference between initializing a variable and creating a variable.



    // Create variables
    int firstInt; // This variable was just created not initialized
    int secInt = 100; // This...
  2. Re: I cannot figure out what the errors mean nor how to correct them. Please help.

    Those lines are very descriptive in the error itself. Both are initialized within the while loop but what happens if the condition in the while loop is not met? Those values will never be initialized...
Results 1 to 2 of 2