Search:

Type: Posts; User: darkmagic

Search: Search took 0.00 seconds.

  1. Program stops working as soon as I input value?..

    I'm trying to create a dos-based sudoku solving program. The first step, as you can see in the code here, is to collect user input. The primary responsibility of the function "checkValid" is to...
  2. Replies
    7
    Views
    2,608

    Thanks, I misunderstood the fopen function.

    Thanks, I misunderstood the fopen function.
  3. Replies
    7
    Views
    2,608

    fopen not working properly?

    Still learning c programming. I compiled the following code:




    #include <stdio.h>

    main() {
    FILE *file;
    if ((file = fopen("test.txt", "r") ) == NULL) {
  4. The following if statement is not working!...

    Hello. I am completely new to programming so bear with me. I currently have this program compiled, built, and executed, but it is not doing what I want it to do:




    #include <stdio.h>
    main()...
Results 1 to 4 of 4