Search:

Type: Posts; User: raymond1234

Search: Search took 0.00 seconds.

  1. I do but I went to a web page and I think the...

    I do but I went to a web page and I think the webpage installed some kind of active x program with out my permission a worm or something and my antvirus was not able to detect the worm
  2. what's the closest thing to Bloodshed on Ubuntu

    Hello All,

    I just recently started learning c on win xp using the bloodshed ide and complier, but something happened I got infected with a trojan or something. Instead of trying to fix it I...
  3. I under stand now thanks its like base 10 but you...

    I under stand now thanks its like base 10 but you have a different weight system

    2 0 = 1
    2 1 = 2
    2 2 = 4
    2 3 = 8
    2 4 = 16
    2 5 = 32
    2 6 = 64
    2 7 = 128
  4. Thanks for the responses they were all very...

    Thanks for the responses they were all very helpful, but it seems all you geniuses know base 2, so it must be helpful to know.

    I like this comment it drove the point home (I will reach a limit...
  5. Is it possible to learn c with out knowing base 2 binary?

    I am learning about c and I am studying the ascii character set a byte is 8 bits and a byte and can have 256 different values assigned to it

    But I can not really conceptualize any of that I only...
  6. char array[100] = {0}; you use this...

    char array[100] = {0};

    you use this short hand notation to explicitly set the first element to zero and implicitly set all the other elements to zero
    when you first initialize an array

    ...
  7. shortcut notation

    is there a short cut notation in c to initialize the rest of the elements to the null character?

    Thanks for the reply by the way I really appreciate it
  8. how do I find the length of and array using sizeof()

    Damm I forgot this I knew this a week ago but it slipped out.




    #include<stdio.h>

    main()
    {
    int x;
  9. thanks all my problem was solved Now I am ready...

    thanks all my problem was solved Now I am ready to build my program thanks

    I am trying to make a cd database

    strcpy(names[0], "value you want");

    thank you!
  10. I am trying to set an element of a char array what am I doing wrong?

    Hello world this is my first post. I thought I would try to learn c programming and I stumbled onto this

    >>>Why don't something like this work what am I doing wrong?<<<



    #include<stdio.h>...
Results 1 to 10 of 10