Search:

Type: Posts; User: africanwizz

Page 1 of 7 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,814

    I really only wanted to know what projects other...

    I really only wanted to know what projects other people thought would be worth pursuing for the sake of completeness.I do have a couple ideas, but yea..i get your point
  2. Replies
    2
    Views
    2,814

    Capstone project shinanigans

    Greetings,

    I will be starting on my capstone project (to fulfill the requirements of degree yadiyada..) in my computer science degree. I just finished my degree in engineering and would like to do...
  3. Replies
    11
    Views
    9,209

    You either have too much free time and an...

    You either have too much free time and an obssesive love for trolling or you really are oblivious, either way . You need help
  4. Replies
    13
    Views
    971

    I see. Thanks

    I see. Thanks
  5. Replies
    13
    Views
    971

    Care to explain?

    Care to explain?
  6. Replies
    6
    Views
    941

    variable declaration - When to use extern in C++...

    variable declaration - When to use extern in C++ - Stack Overflow
  7. Replies
    5
    Views
    2,077

    check the voltage before regulation. Tha'ts the...

    check the voltage before regulation. Tha'ts the best way to do it, use an attenuator if your voltage levels are greater than your controller logic
  8. Replies
    9
    Views
    1,944

    If you really do want to get into all the good...

    If you really do want to get into all the good stuff, freescale offers some really cheap boards (the KL25z being one of the more famous ones) and they allow for alot of flexibility in programming...
  9. Thread: Hi

    by africanwizz
    Replies
    17
    Views
    1,741

    a little late but... i started my degree with...

    a little late but... i started my degree with zero knowledge of programming languages ( i knew a little html and thought it was a language), 1st year was hard (intro to C class looked like gibberish)...
  10. Replies
    6
    Views
    1,863

    i remember having such a terrible algorithm for...

    i remember having such a terrible algorithm for question 10 that it took me hours to get an answer. really good site
  11. Replies
    12
    Views
    1,178

    i just had to " if your going to say HTML...

    i just had to
    "

    if your going to say HTML is a programming language then you might as well include things such as word documents, as they too work on ML 'Markup Language' so no HTML is a not a...
  12. Replies
    1
    Views
    2,217

    this has nothing to do with c...Sigh ...

    this has nothing to do with c...Sigh

    Frequency = (1/tick)* 100 i.e pulses /sec

    bpm = frequency * 60 forone minutes i.e pulses per minute

    bpm = (1/tick)* 100 * 60 forone minutes i.e pulses...
  13. Replies
    5
    Views
    808

    Hmm your code doesn't seem to like multiples of 2.

    Hmm your code doesn't seem to like multiples of 2.
  14. Yes , yes it is..the first iteration of you loop...

    Yes , yes it is..the first iteration of you loop compares checks if(5 < 5), your second if(5<1) and so on.. i think might be missing some knowledge on pointer arithmetic .try here too
  15. what exactly are you free()-ing?

    what exactly are you free()-ing?
  16. Replies
    4
    Views
    729

    show code please

    show code please
  17. Replies
    2
    Views
    1,568

    you only need to call srand() once i.e. it should...

    you only need to call srand() once i.e. it should not be in a loop
  18. Replies
    2
    Views
    732

    i didn't read the page fully , but it offers an...

    i didn't read the page fully , but it offers an explanation to your question here
    .....
    in particular,the conversion part of the article
  19. Replies
    18
    Views
    1,860

    sounds like a scene off inception .

    sounds like a scene off inception .
  20. as laserlight said, it most probably due to the...

    as laserlight said, it most probably due to the algorithm used, im sure google could shed some light on better algorithms to use if any(of course they are)
  21. Replies
    9
    Views
    1,327

    Thanks for the help. problem was with some of my...

    Thanks for the help. problem was with some of my system settings
  22. Replies
    9
    Views
    1,327

    alright thanks,will look into it. for now sleep...

    alright thanks,will look into it. for now sleep whispers sweet sounds in my ear
  23. Replies
    9
    Views
    1,327

    /* * Position iterator to head of list and...

    /*
    * Position iterator to head of list and return its data.
    */
    void *lst_first(List *lst)
    {
    lst->iterator = lst->head;
    if(lst->iterator != NULL)
    return...
  24. Replies
    9
    Views
    1,327

    yea, its a linked list attempt "If so, then...

    yea, its a linked list attempt


    "If so, then you should dereference that pointer to get the data pointer, and cast that data pointer to char*." , thats actually what the functions do. the data...
  25. Replies
    9
    Views
    1,327

    printing from void pointer

    int main()
    {
    List* newList= lst_new();
    names* nama;
    char* data;
    int x=1;

    while(x == 1)
    {
    nama = names_new();
Results 1 to 25 of 160
Page 1 of 7 1 2 3 4