Search:

Type: Posts; User: loserone+_+

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    2,705

    Problem Printing Other Form In C# Form

    Hi, i having a problem in C# printing method

    Let Say, I have C# Form1 and Form2
    Form1 had a button on it, it says Print Page Form2
    Form2 didnt had anything on design or had anything on design
    ...
  2. maybe this will help you, char *name[]; ...

    maybe this will help you,

    char *name[];

    string constant in indexing array.
  3. Replies
    3
    Views
    837

    or the struct in display function,

    or the struct in display function,
  4. use curly brackets for operator aritmatic, and...

    use curly brackets for operator aritmatic,
    and returning variable please not a value.
  5. Replies
    42
    Views
    16,930

    and when i see the link anduril give, i realize...

    and when i see the link anduril give,
    i realize something funny in latin square (cool though)

    condition 1:
    1 2 3 4
    4 1 2 3
    3 4 1 2
    2 3 4 1

    condition 2:
  6. Replies
    42
    Views
    16,930

    what if the matrix given a bad top horizontal...

    what if the matrix given a bad top horizontal number to check,
    example

    2 6 8 4
    4 2 6 8
    8 4 2 6
    6 8 4 2

    this looks confusing, sure i cant think the logic right now (nb: im very sleepy right...
  7. Replies
    7
    Views
    1,076

    hm, another add by me, while(1) its better for...

    hm, another add by me,

    while(1) its better for unlimited scanf for that switch case until the user break it than do while loop i assume
  8. Replies
    42
    Views
    16,930

    so you're in a right way to victory then.

    so you're in a right way to victory then.
  9. Replies
    42
    Views
    16,930

    in the example on top your thread, its 1 2 3...

    in the example on top your thread,
    its
    1 2 3
    3 1 2
    2 3 1

    so after the end of the horizontal top number its down to below right?
    another example i assume:
    1 2 3 4
    4 1 2 3
  10. Replies
    10
    Views
    1,830

    ^ is bitwise operator right ?

    ^ is bitwise operator right ?
  11. Replies
    9
    Views
    897

    Salem is saying that u have to learn the swap...

    Salem is saying that u have to learn the swap logic,

    Example:
    int a = 5;
    int b = 7;
    int c = 10;

    and the question is how to change the value a to b, b to c and c to a
  12. by the way why u using system("pause"); ?

    by the way why u using system("pause"); ?
  13. and dont forget the limit of month and the days,...

    and dont forget the limit of month and the days, :wink: because scanf can read integer until 65536 (is this correct value for signed int)
  14. i would say swing swing rather than string -...

    i would say swing swing rather than string - string ;)
  15. yeah, i always using strcpy() function to...

    yeah, i always using strcpy() function to assigning the string and whats wrong with the book by that ?

    oh, im sorry. if u mean the

    char ss[MAX];
    int i;
    for(i = 0; i < 7; i++)
    ...
  16. why terrible? let us c book is bad ? yeah,...

    why terrible? let us c book is bad ?



    yeah, on a minute before i reading your reply, i realize that string constant cannot be changed or modified, i guess i will passing all string *str[] into...
  17. strstr Function: Search and Replacing New String

    LOOK!


    #include<stdio.h>
    #include<string.h>
    #define MAX 25

    int main(void)
    {
    int ch;
  18. Replies
    2
    Views
    868

    i reccomend using flushing input: int ch;...

    i reccomend using flushing input:

    int ch;
    while((ch = getchar)) != '\n' && ch != EOF);

    after the scanf.
  19. Replies
    6
    Views
    895

    why the calculation for cooper bla bla bla in if...

    why the calculation for cooper bla bla bla in if parameter ? why you didnt make a variable that hold the value of the material ?
  20. Replies
    17
    Views
    3,493

    yeah i get it, little question solved though...

    yeah i get it, little question solved though :wink:
  21. Replies
    17
    Views
    3,493

    i see, so simply said, its only used once on...

    i see, so simply said, its only used once on inner loop because J didnt get loop from outer loop ?
    i mean repeated j = 1 in outer loop.
  22. Replies
    17
    Views
    3,493

    im trying this question topic and i get a little...

    im trying this question topic
    and i get a little question



    #include<stdio.h>

    int main()
    {
    int i = 10,
  23. Replies
    3
    Views
    864

    see my line, im still amateur, not a pros :(

    see my line, im still amateur, not a pros :(
  24. first thing to do dont use fgets and fflush

    first thing to do dont use fgets and fflush
  25. Replies
    3
    Views
    864

    wow, for the first time i see many function in...

    wow, for the first time i see many function in the program, makes headache xD
Results 1 to 25 of 116
Page 1 of 5 1 2 3 4