Search:

Type: Posts; User: thesyntaxdr

Search: Search took 0.01 seconds.

  1. HCI/Software Engineering questionnaire for research capstone

    Hello everyone,

    I am looking for developers and HCI specialists/designers to answer an anonymous questionnaire for a research capstone project of mine. I am doing research on which practices of...
  2. Sorry i didnt change the (filename, "a+"); to...

    Sorry i didnt change the (filename, "a+"); to (filename, "r"); before submission.

    My bad
  3. Read txt file and print contents numbering each new line of text

    Alright, I have written the following code but i am stuck. Here is the problem and below is the code ive written thus far:

    Write a program that will prompt the user for a file name and open that...
  4. can you elaborate on putchar and where that...

    can you elaborate on putchar and where that should be used? i am familiar with what it does on a basic level but wasn't aware i needed if for the program to function properly
  5. i knew i was going to get nailed for the gets()...

    i knew i was going to get nailed for the gets() sorry about that.

    the rewind(inFile); is an attempt to start at the beginning of the file and display the file with all capitalized contents.
    ...
  6. Replies
    7
    Views
    1,800

    Grumpy is right though, doublesEntered keeps...

    Grumpy is right though, doublesEntered keeps track of the number of values entered just as i in my previous post would.
  7. Replies
    7
    Views
    1,800

    Instead of if (num != -1) try for(i = 0;...

    Instead of
    if (num != -1)
    try
    for(i = 0; i != -1; i++)

    this will help you keep track of the total number of inputs

    hopefully that helps. Im still a rookie so if not my bad.
  8. converting a string array into uppercase letters from file

    Hi everyone,

    I am new to coding so i really appreciate the help. Here is the problem.

    Have a program prompt the user for a filename to open. Change every alphabetic character in the file to a...
Results 1 to 8 of 8