Search:

Type: Posts; User: guitargod

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Dude where is the string.h?

    Dude where is the string.h?
  2. Replies
    1
    Views
    767

    interesting ideas

    hey please post some interesting project ideas in c..
    i am an intermediate level programmer, you can say..
  3. anything with a floating point is automatically a...

    anything with a floating point is automatically a double foe the computer. here you say 3.14f, it means.. oh wait, it's not double, it is float. use it as a float!
    also check out this discussion -...
  4. Replies
    3
    Views
    861

    I want to code it.. So basically I'll send and...

    I want to code it..
    So basically I'll send and receive data from and to the sevrer program..??
    But how can I calculate the time taken in this cycle??
    Simple time library??
  5. Replies
    3
    Views
    861

    Internet speed tester

    Hello everyone, I want to test the speed of an internet connection on windows.
    How do I go about it...?
    I can do sockets.
    Thought of processing ping data from google.com... But is there any other...
  6. Thread: DLLs?

    by guitargod
    Replies
    11
    Views
    2,865

    Thought of a a self-extractor?? For a single...

    Thought of a a self-extractor??
    For a single executable??
  7. Replies
    22
    Views
    2,579

    Yup. that part is WRONG! Didn't notice it.

    Yup. that part is WRONG! Didn't notice it.
  8. Replies
    22
    Views
    2,579

    Conditional statements is the way to go. Use if...

    Conditional statements is the way to go. Use if else. If you still don't get it, tell me, I'll help.
  9. Replies
    22
    Views
    2,579

    Your code is 100% correct. Worked for me. Try a...

    Your code is 100% correct.
    Worked for me. Try a different compiler.
  10. Replies
    17
    Views
    2,565

    Kick your lecturer's sorry ass.

    Kick your lecturer's sorry ass.
  11. This doesn't mean anything.

    This doesn't mean anything.
  12. Replies
    4
    Views
    794

    Sorting...

    I did not get an error like yours on Dev-C++. Your program was not a SORTING program! Here is a proper sorting program-
    Ask if you have queries on this program-

    #include<stdio.h>...
  13. Replies
    13
    Views
    1,666

    Oh... That is terrible!

    Oh... That is terrible!
  14. It says that if none of the cases above are true,...

    It says that if none of the cases above are true, then state is actually 'IN' a word.
  15. Replies
    13
    Views
    1,666

    Then it must feel 'first class', huh..?! Sorry...

    Then it must feel 'first class', huh..?!
    Sorry laserlight for my bliss and ignorance!
  16. Replies
    25
    Views
    3,582

    Sorry grumpy, iMalc, laserlight!

    Sorry grumpy, iMalc, laserlight!
  17. Replies
    25
    Views
    3,582

    You're right. It did work but the way I...

    You're right. It did work but the way I implemented it was improper..!
    I did this experiment a few months back and therefore was pretty confident about it!!
  18. Replies
    9
    Views
    4,515

    Each user gets a new thread??

    Each user gets a new thread??
  19. Replies
    25
    Views
    3,582

    Okzz... Give up!

    Okzz... Give up!
  20. Replies
    25
    Views
    3,582

    It should work.. Aah.. Maybe it's the compiler!!

    It should work.. Aah.. Maybe it's the compiler!!
  21. Replies
    25
    Views
    3,582

    Proof

    #include<stdio.h>
    #include<conio.h>
    #include<string.h>
    int main()
    {
    char arr[10]={"LASERLIGHT"};
    printf("%s\n", &arr);
    strcat(arr, "ING");
    printf("%s\n", &arr);
    ...
  22. Replies
    13
    Views
    1,666

    Already on it!!

    Already on it!!
  23. Replies
    25
    Views
    3,582

    Check this out

    #include<stdio.h>
    #include<conio.h>
    int main()
    {
    char arr[10]={"LASERLIGHT"};
    printf("%s", &arr);
    getch();
    return 0;
    }
  24. Replies
    25
    Views
    3,582

    But I on the contrary feel the dimensions are...

    But I on the contrary feel the dimensions are perfect;
  25. Replies
    5
    Views
    3,427

    Exactly!

    Exactly!
Results 1 to 25 of 33
Page 1 of 2 1 2