Search:

Type: Posts; User: msummers

Search: Search took 0.00 seconds.

  1. Replies
    16
    Views
    12,714

    then how do i compare a string?

    then how do i compare a string?
  2. Replies
    16
    Views
    12,714

    the question that is asked is asking the user for...

    the question that is asked is asking the user for a stringed response thus, the 'yes' is a string input for the program to determine whether or not a restart is required.
  3. Replies
    16
    Views
    12,714

    Could I do this: if (x != 'yes') ...

    Could I do this:



    if (x != 'yes')
    end;
    else
    continue;
  4. Replies
    16
    Views
    12,714

    I think that I have a copy at home written in C++...

    I think that I have a copy at home written in C++ that I would like to convert to C for my Final
  5. Replies
    16
    Views
    12,714

    If I had the code with me still I would have...

    If I had the code with me still I would have pasted it to show what it is that I am talking about
  6. Replies
    16
    Views
    12,714

    Restarting a program in C

    while writing a program in C how do I code a restart function for the program to re-initialize the program? What is the best way to do this as well?
  7. Replies
    9
    Views
    4,207

    Yes I searched first, and what I was looking for...

    Yes I searched first, and what I was looking for wasn't listed
  8. Replies
    9
    Views
    4,207

    thank you

    thank you
  9. Thread: Bit Display.

    by msummers
    Replies
    11
    Views
    2,179

    The code now works after this: #include...

    The code now works after this:



    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <math.h>
    #include <limits.h>
    #include <float.h>
  10. Replies
    9
    Views
    4,207

    #include int main(){ int i, val =...

    #include <stdio.h>
    int main(){
    int i, val = 1;
    for(i = 1, i < 35, ++i){
    printf("%15d%15u%15x%15o\n", val, val, val, val);
    val *= 2;
    }
    return 0;
    }
  11. Replies
    9
    Views
    4,207

    Displaying Binary Numbers

    Does anyone know how to display the binary number system in the output of a program?

    Any help would be greatly appreciated.
Results 1 to 11 of 11