Search:

Type: Posts; User: ssharish2005

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    4,751

    Google maps and its accuracy

    Hi all.

    Im not sure if you can help understand GPS and mapping system.
    I have question on GPS coordinates. Perhaps this is basic question, however I wanted to clarify.

    How accurate are google...
  2. Thanks very much all. I really appreciate it. ...

    Thanks very much all. I really appreciate it.

    and thanks TechnoGourmet for the detailed explanation of your thoughts :) Much appreciated.
  3. Is having domai other than .com a bad marketing?

    Hey guys.

    Not sure and im slightly confused how to go ahead. Im in the process of setting up a startup and Im looking for a domain which fits my company name. However there's a problem.

    Lucky...
  4. Replies
    4
    Views
    4,010

    I dont understand what your asking. Are you...

    I dont understand what your asking.

    Are you trying to convert this expression
    ((5 + 4) -2) - ( 3-4 )> 8

    into a C program? If so are those operand a constants or an variable?
  5. Replies
    5
    Views
    7,106

    First thing first. Your code donst even compile...

    First thing first. Your code donst even compile in the first place. The function your calling getch, getche etc are defined in conio.h which is a non standard library and therefore the compiler would...
  6. Replies
    7
    Views
    7,544

    I have no idea why the periods are in place. I...

    I have no idea why the periods are in place. I did compile and got it working before I posted it. It probaby something to do with the editor which happened to vim..

    I get the point with the EOF...
  7. Replies
    7
    Views
    7,544

    You need a function something like this ...

    You need a function something like this



    void clear_stdin(void).
    {
    int ch =getchar();
    while( ch != '\n' && ch != '\0' ).
    ch = getchar();
    }
  8. Replies
    2
    Views
    675

    Quite often they have button on the side off the...

    Quite often they have button on the side off the laptop to turn the Bluetooth one and also you must new icon like LED lite when turned on just above the keypad.
    Im not quite families with the...
  9. Replies
    1
    Views
    694

    Electronics pcb simulation

    Hi all,

    Im not an expect in electronics but i have a task or rather something i wanting to. So basically im after a tool which will help simulate a chipset.

    So what i mean is, are there any...
  10. > I can't seem to find a definitive explanation...

    > I can't seem to find a definitive explanation of the rules for implicit int to float type conversion when an expression contains one float value and several int values, and also several operators....
  11. Replies
    6
    Views
    1,607

    Excellent! Now what's the question? You aren't...

    Excellent! Now what's the question? You aren't going to get an answer without a question sadly :/
  12. Replies
    6
    Views
    1,607

    What is the question? You cant just dump a text...

    What is the question? You cant just dump a text and solution and expect us to do everything for you.
    learn to ask smart question and in return you get smart answers.
  13. You need fprintf rather than fwrite. fwrite...

    You need fprintf rather than fwrite. fwrite writes in bytes where as fprintf writes in string.



    fprintf(fptr, "%f", rval);


    ~H
  14. Replies
    5
    Views
    5,843

    Excellent! Another one.... ~H

    Excellent! Another one....

    ~H
  15. Replies
    4
    Views
    1,803

    >I declared this as a global variable because I...

    >I declared this as a global variable because I received an error stating that I had too few arguments and that 'a' and 'b' were undeclared. Which it is still doing now, i'm not sure how to resolve...
  16. Replies
    3
    Views
    677

    That is because getchar() function requires a...

    That is because getchar() function requires a return key to be hit after every char you enter. As an effect you never enter the loop at all. You can read through this FAQ to find out how to read from...
  17. Replies
    8
    Views
    4,374

    Surely this thread should be in "Tech Board"?

    Surely this thread should be in "Tech Board"?
  18. Replies
    5
    Views
    1,496

    I really never understood why this features...

    I really never understood why this features wasn't included within the standard library? This seems like tho such a useful feature and all non standard library provides them :/
  19. As laserlight suggest your best option is to copy...

    As laserlight suggest your best option is to copy the line read direct onto destination array. However you may end up with a problem where the destination array wont have enough memory to hold all of...
  20. Replies
    2
    Views
    624

    > I just followed the requirements of using...

    > I just followed the requirements of using strcat.
    Perhaps you didn’t follow it to an extend where it explicitly specified this



    I would also suggest that you use strncat. Rather than strcat...
  21. Indeed - i didn’t say your reply was wrong! I’m...

    Indeed - i didn’t say your reply was wrong! I’m giving him more information and pointers for his better understanding and possible explorations. Its upto OP whether to take it or leave it. To that...
  22. Replies
    8
    Views
    1,037

    There are 3 different thing. 1. You've...

    There are 3 different thing.

    1. You've defined struct called student
    2. Inside the struct you have a "member variable" and your asking compiler to allocate 15 bytes.
    3. And to access that 15...
  23. You can check these things yourself using...

    You can check these things yourself using valgrind. Valgrind can help you check for any memory leaks in your program instantly. What you all have to do is compile your code with debugg option enabled...
  24. And the FAQ...

    And the FAQ you must be reading.

    You must be looking at the C implementation of my_flush(...) function.

    ~H
  25. Thread: Advice

    by ssharish2005
    Replies
    21
    Views
    2,606

    Ok! So is it worth spending the time to continue...

    Ok! So is it worth spending the time to continue researching and working on the idea or is it just abandon it, get the patent issues and then continue? This is what im trying to evaluate :/

    I...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4