Search:

Type: Posts; User: RockyMarrone

Page 1 of 16 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,671

    [QUOTE=jalisco;1088000]strange. I get the...

    [QUOTE=jalisco;1088000]strange. I get the following error.



    strlen.c: In function ‘main’:
    strlen.c:9: warning: format ‘%d’ expects type ‘int’, but argument 2 has type ‘long unsigned int’...
  2. Replies
    6
    Views
    1,671

    Its is compiling, what kind of error you are...

    Its is compiling, what kind of error you are facing?
  3. Replies
    11
    Views
    1,221

    "What does your program output when y is equal to...

    "What does your program output when y is equal to 169?" replied run the program because program was running...

    And about another one, this website doesn't owned by you, so where I need to comment...
  4. Replies
    3
    Views
    2,846

    Statement else ((d1==7) || (d2==7)) should be...

    Statement else ((d1==7) || (d2==7)) should be else if ((d1==7) || (d2==7)).
  5. Replies
    11
    Views
    1,221

    It will be prime, you can run the program. May...

    It will be prime, you can run the program.

    May be on your console you can check from 700 or something, your program is displaying prime/nor prime from 1 to 1000
  6. Replies
    7
    Views
    1,149

    What kind of help you need, that people will...

    What kind of help you need, that people will write the code for you?
  7. There are so many problems in your code... 1....

    There are so many problems in your code...

    1. there are no words in your list... and you try to compare it with input word? from where the compiler will generate a list?????
    2. <b> char...
  8. There are so many problems in your code... 1....

    There are so many problems in your code...

    1. there are no words in your list... and you try to compare it with input word? from where the compiler will generate a list?????
    2. <b> char...
  9. Replies
    15
    Views
    1,973

    Actually in function main() you were not...

    Actually in function main() you were not allocating memory to char* that is why it was getting crashed...
  10. Replies
    13
    Views
    1,832

    Well Said Adak :)

    Well Said Adak :)
  11. Replies
    13
    Views
    1,832

    What we want that u shud try it first, at your...

    What we want that u shud try it first, at your end and if u find any problem, after tryin hard u should get in here than..

    By this way your learning will be faster.
  12. Replies
    32
    Views
    9,742

    Ok, I love to use the full reached editor called...

    Ok, I love to use the full reached editor called EMACS, If u want, you can give a try to it.
  13. Replies
    13
    Views
    1,832

    Ok, One hint use macros for const values

    Ok, One hint use macros for const values
  14. Replies
    13
    Views
    1,832

    Haaaa , LOL there is a big quote, which we used...

    Haaaa , LOL there is a big quote, which we used to say alot in our school dayz.



    His friend gave him the code, he want to give the same assignment but with differ in style of coding. M i...
  15. Thread: Help

    by RockyMarrone
    Replies
    3
    Views
    1,016

    What u can do write a code like this.... ...

    What u can do write a code like this....



    #include <stdio.h>
    #include <stdlib.h>

    int main() {
    system("find . -name '*.txt' > output");
    return 0;
  16. Replies
    8
    Views
    1,820

    The simpler or tougher the things will be, when u...

    The simpler or tougher the things will be, when u try to do it.......
    But before jumping in to the swimming pool every body thinks that, swimming is a tough job....
    Itz upon u what u wanna do u...
  17. Replies
    8
    Views
    2,088

    Yup dude, but itz a big disaster. We should send...

    Yup dude, but itz a big disaster. We should send some condolence there i think.
  18. Replies
    4
    Views
    1,398

    It tottaly depends on u dude ,,,, actually std...

    It tottaly depends on u dude ,,,,
    actually std is a namespace so when u r saying that using namsepsace std; means what ever will be in that namespace will be available to u.....

    it depends on u...
  19. Replies
    35
    Views
    4,853

    ok check this out please #include...

    ok check this out please



    #include <stdio.h>
    #include <stdlib.h>

    int main() {
    const int value = atoi("122");
    printf("value == [%d]\n", value);
  20. Replies
    35
    Views
    4,853

    ok, from the above posts, what i can get u want...

    ok, from the above posts, what i can get u want to display 122 as an int, what u can do

    with help of atoi get the "122" as 122 and than display ....

    duno it will work or not :(
  21. First of all if u are saying that you want to...

    First of all if u are saying that you want to access private variable of a class (local u said), there are numerous ways to do that....

    1... make the class as friends to each other.
    2... Make an...
  22. Replies
    10
    Views
    13,320

    What is the precision value between 0 to 1

    What is the precision value between 0 to 1
  23. Replies
    10
    Views
    13,320

    What i can suggest is that, you are having any...

    What i can suggest is that, you are having any array of integers......


    traverse the loop

    like ........


    from 0 to n
  24. Replies
    18
    Views
    2,880

    What Mr. Quzah want to tell u is that...... How...

    What Mr. Quzah want to tell u is that......
    How would you know that, in calling function the array size..... for traversal

    example




    void print_elements(const int* array, const int...
  25. Replies
    5
    Views
    1,229

    Please read on wiki about operator precedence in...

    Please read on wiki about operator precedence in C/ C++

    i can give you an example that.

    Do u know BODMAS ???

    / is having greater precedence than *,
    * is having greater precedence than +,
    +...
Results 1 to 25 of 381
Page 1 of 16 1 2 3 4