Search:

Type: Posts; User: ilerleartik

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    4,859

    Thanks for your replies. It might be...

    Thanks for your replies.

    It might be sometimes hard to ask something in this forum. When I say, "Hey I found this on Web, and I want to change it", then people just say "Grr, do not copy and...
  2. Replies
    3
    Views
    4,859

    Splay Tree problem

    I have a code that gets the number and inserts into a splay tree. You know, when you insert a key into this tree, this key will be splayed and will be taken to root by doing zig-zig or zig-zag...
  3. Replies
    2
    Views
    688

    I tried this and worked, I don't know why; ...

    I tried this and worked, I don't know why;



    void myfunction(mystruct **tmp)
    {
    *tmp=(*tmp)->next;
    }
    ..
    .
  4. Replies
    2
    Views
    688

    Simple pointer function question

    Hi,

    I struggled on something; here is the question;

    I have a struct that contains some items and a pointer; I call this node;
    I have another node in same struct and also have a pointer.

    Now...
  5. Display array 1 by 1 with listbox or what?

    A basic Question: I have a string array. I want to display it 1 by 1 HORIZONTALLY. Not vertically just like in listbox and how?

    I used
    while(i<isl1){
    islekran.Items.Add(isl[i]); i++;
    }
    for...
  6. Replies
    2
    Views
    3,124

    Calculator on C#

    Hey!
    I have a calculator with buttons, and when I click the numbers or operators, it goes to a string array. So;

    Press 3
    Press +
    Press 2
    Press =

    and my array is str[0]='3' str[1]=.... so...
  7. Thanks for your interest. I've read you...

    Thanks for your interest. I've read you carefully. Yes Gamemaker has very restricted DLL method. But I prepared a DLL which calculates a+b those variables taken from Gamemaker, and returns to...
  8. Making DLL for other programs(Basic question)

    Hey!

    My code has a MAIN() function as in nearly all of C codes have. And also some functions I customized on my own. So it seems just like this;




    void function(......){
    ...
    }
  9. Replies
    8
    Views
    2,261

    #define kerem 982721*11 int main(){ char...

    #define kerem 982721*11

    int main(){

    char isl[61],cossm[61],sinn[51];
    double...
  10. Replies
    8
    Views
    2,261

    If I assign NULL to all elements of a Char array,...

    If I assign NULL to all elements of a Char array, does it make any problem?
    char a[0]=NULL a[1]=NULL .....
  11. Replies
    8
    Views
    2,261

    I don't know which piece of code caused. From...

    I don't know which piece of code caused. From very beginning of programming, when I receive that error, I always receive on line 56 and 68, however these lines changed so many times. I think these...
  12. Replies
    8
    Views
    2,261

    One more Debug Assertion Failed! Error

    What's with That error? I couldn't get rid of it. As long as my codes increase, The chance of getting that error increasing as well.

    The same error;

    file:.....\istype.c
    Line: 56 and then 68...
  13. Haha no I couldn't think to #define them just as...

    Haha no I couldn't think to #define them just as you ve done. Good idea,though :)
  14. As soon as Ive read your post and seen...

    As soon as Ive read your post and seen "memory","array","overflow" words in it. So I ve checked my array. Yes, I've seen the problem. Because my char array has 50 elements. But I put my char in a...
  15. My codes working correctly, nevertheless I get debug error

    My codes are working correctly and gives the expected result, but nevertheless I receive DEBUG ERROR!

    ;
    Run time check failure #2 - stack around the variable 'isl' was corrupted...
  16. Firstly, thanks for your recommendations and...

    Firstly, thanks for your recommendations and arguing on this issue. To talk about what Laserlight said, yes, I've heard about tokens, however I don't exactly know what it is and how it works. So if I...
  17. No need for warning, I don't want you to code all...

    No need for warning, I don't want you to code all the program. If exists, Ive just requested the ready-code. If not exist, somehow I will code it on my own.

    Here is another problem. I've seen some...
  18. Hmm If I google that shunting yard algorithm, Can...

    Hmm If I google that shunting yard algorithm, Can I find the code that ready to execute?

    Because I know the algorythm, I just need the codes that is ready to use if exists.

    I cant code that...
  19. Aritmethic operations on Stack (Array implementation)

    Hey folks,

    I have number arrays(int a[]) and operator arrays(char b[]) seperately. And also I can combine them both into one another integer array(operator characters will be transfered there with...
Results 1 to 19 of 19