Search:

Type: Posts; User: ToNy_

Search: Search took 0.00 seconds.

  1. Replies
    16
    Views
    2,586

    Yes . I was turn on warning in Code . After i...

    Yes . I was turn on warning in Code . After i edited *p=NULL to *p='\0' . It give me a warning "assignment makes integer from pointer without a cast" int line "
    for(*p=strings +...
  2. Replies
    16
    Views
    2,586

    When i used Code:blocks compiler code is well ...

    When i used Code:blocks compiler code is well but with Pelles C compiler is display error : "Operands of '!=' have incompatible types 'char' and 'void*'" . Can you tell me why, i don't understand.
  3. Replies
    16
    Views
    2,586

    I understood . But compiler don't display message...

    I understood . But compiler don't display message . It show rubbish character . I don't know why .
  4. Replies
    16
    Views
    2,586

    Yes. It is very good result . Thanks stahta .

    Yes. It is very good result . Thanks stahta .
  5. Replies
    16
    Views
    2,586

    \ Thank you . This is my code : ...

    \
    Thank you . This is my code :

    #include<stdio.h>#include<conio.h>
    #include<ctype.h>
    int main()
    {
    char strings[200];
    char *p;
    printf("Input strings : ");
  6. Replies
    16
    Views
    2,586

    But the program still run not true .

    But the program still run not true .
  7. Sorry. I have done it . I was create winform...

    Sorry. I have done it . I was create winform project so i can't find .dll file in BIN folder .
  8. How the way to build project to Dynamic Linking Language (.dll)

    I have a project C# and i want to build it to .dll for use in ASP.Net project . Can anyone tell me the way to do it.
    It look like my attachments image .
    Thank a lots.
  9. Replies
    16
    Views
    2,586

    Thank you.

    Thank you.
  10. Replies
    16
    Views
    2,586

    Compiler give error when run Pointer exercise .

    Hi everybody ,
    i'm learning about Pointer and type a tutorial Capitalization(strings) and
    reverse(strings) . But compiler give me a error " 'for' loop initial declarations are only allowed in C99...
  11. Replies
    5
    Views
    3,123

    Ok . I'm will do it.

    Ok . I'm will do it.
  12. Replies
    5
    Views
    3,123

    Thanks a lot CommonTater, vs Grumpy . I was...

    Thanks a lot CommonTater, vs Grumpy . I was correct it and it don't have problem . But i till don't know when we must initialize value of variable .
    This is my code :


    #include<stdio.h>...
  13. Replies
    5
    Views
    3,123

    Problem with looking for MIN,MAX in Array

    I have a code . Looking for Min,Max in a Array . I can find Min in array
    but Max display garbage. Please tell me why .


    #include<stdio.h>
    #include<conio.h>
    int main()
    {
    int number[25];...
  14. I think i have to add return 0 at the end .

    I think i have to add return 0 at the end .
  15. While(n>0||n

    While(n>0||n<100) . I don't know why . Exercise give me some hints like that.
  16. Yes. I'm understood.

    Yes. I'm understood.
  17. Tks a lots . I can be edit it . It is good. But...

    Tks a lots . I can be edit it . It is good. But how can I input n again if n >100 .

    #include<stdio.h>#include<conio.h>


    void main()
    {
    int A[100];
    int B[100];
    int i,n;
  18. Exercise reverse array . I can't to find error .

    I have a code :

    #include<stdio.h>#include<conio.h>


    void main()
    {
    int A[100];
    int B[100];
    int i,n;
  19. Replies
    9
    Views
    1,494

    Thank a lots Mk27 vs CommomTater . Today i have...

    Thank a lots Mk27 vs CommomTater . Today i have learned swap two variables and Bubbles sorting algorithms .
  20. Replies
    9
    Views
    1,494

    I have known that. Is that assign swap two...

    I have known that. Is that assign swap two variables?
    Like this :
    B = A-B;
    A = A-(-B)
    B = A +B
  21. Replies
    9
    Views
    1,494

    No . That is a examples in book . I think code...

    No . That is a examples in book .

    I think code only like this :

    #include<stdio.h>
    #include<conio.h>
    void main()
    {
    int n;
    int num[100];
  22. Replies
    9
    Views
    1,494

    Oh. But i think don't need that loop . Code still...

    Oh. But i think don't need that loop . Code still have not error.
  23. Replies
    9
    Views
    1,494

    Sorting algorithms

    I have a code
    #include <stdio.h>
    #include <conio.h>

    void main
    {
    int n;
    int num[100];
    int L;
    int desnum[100], k;
  24. Replies
    15
    Views
    2,143

    #include int main() { char*...

    #include <stdio.h>

    int main() {
    char* string="ape";
    int i=0;
    for(;string[i]!='\0';i++) {
    if (string[++i]=='\0') printf("here");
    }
    }
Results 1 to 24 of 24