Search:

Type: Posts; User: westony

Search: Search took 0.01 seconds.

  1. Thread: CISCO or ???

    by westony
    Replies
    3
    Views
    1,219

    CISCO or ???

    Hi, there i have a little question. Is there any course of CISCO that I can how can manipulate network like for an example: I have online game my program take the incoming signal manipulating it with...
  2. Replies
    10
    Views
    1,426

    ***all; char *mainmenu[] = {"menu1", "menu2",...

    ***all;
    char *mainmenu[] = {"menu1", "menu2", "menu3", NULL};
    all[0] = mainmenu;

    help its shows me:


    for the last roll ...
  3. Replies
    10
    Views
    1,426

    Ok help me how make that *mainmenu[] =...

    Ok help me how make that
    *mainmenu[] = {"menu1", "menu2", "menu3"}; how to target those menu1,2,3 to those m1p1, m1p2 ... the other is easy game :) Just do not know how to declare that triple...
  4. Replies
    10
    Views
    1,426

    Ok but my boss gave this one for training and...

    Ok but my boss gave this one for training and make me learn that triple pointers, so can you help me build that like the picture... I understand what I must do but my problem is the syntax ... can...
  5. Replies
    10
    Views
    1,426

    Tripple pointers

    Can you help me to start with them I cant find any information about them

    the exactly thing i need its Array of pointers where the pointers are pointing a menu like this idea below.

    Pls just...
  6. Replies
    11
    Views
    1,213

    yes man i know how to type it but this time i...

    yes man i know how to type it but this time i dont have the algorithm ...
  7. Replies
    11
    Views
    1,213

    Ohhh guys for printing my menu I am using this...

    Ohhh guys for printing my menu I am using this code:



    // printing top RED background

    do
    {
    mainchInfo[j].Char.AsciiChar = ' ';
    mainchInfo[j].Attributes = BACKGROUND_RED |...
  8. Replies
    11
    Views
    1,213

    Sorry but, I can not use this m[0] I must do it...

    Sorry but, I can not use this m[0] I must do it pixel by pixel, thats mean that i must do it symbol by symbol
  9. Replies
    11
    Views
    1,213

    sorry but i dont wanna print the menu ...

    sorry but i dont wanna print the menu ...
  10. Replies
    11
    Views
    1,213

    OK I will try with code: I have to make APP...

    OK I will try with code:

    I have to make APP like Turbo Pascal I draw menus and everything. To make some selection i have to REcolor the menu if you navigate in any menu you see that selected one...
  11. Replies
    11
    Views
    1,213

    Array of pointers little help :S

    See the attached picture and help me to make that damn algorithm I do not know how to type it in C.


    char *m[] = {"data", "come", "here"};

    p = position = 0

    how to access that "data" and...
  12. Replies
    3
    Views
    943

    Can you tell me then some algorithm how the *menu...

    Can you tell me then some algorithm how the *menu become same number like menu ??? Or i can put that sizeof in main func and to send the number trough the functions ... but it will be useful ???
  13. Replies
    3
    Views
    943

    Ask about sizeof

    Hi there I have a little problem using sizeof


    #include <stdio.h>
    #include <string.h>


    int main(void)
    {
    char *menu[] = {"data", "comes", "here","asdasda","asdas", NULL};
  14. Thread: SXX0017 error

    by westony
    Replies
    3
    Views
    1,326

    ahhh srry I put this in wrong section :S

    ahhh srry I put this in wrong section :S
  15. Thread: SXX0017 error

    by westony
    Replies
    3
    Views
    1,326

    C only

    C only
  16. Thread: SXX0017 error

    by westony
    Replies
    3
    Views
    1,326

    SXX0017 error

    #include <stdio.h>
    #include <string.h>
    int menuwriter(char **menu);
    int distributor(int p, char **menu);

    int main(void)
    {
    char *menu[] = {"data", "comes", "here", NULL};

    // HERE I PUT...
  17. Thread: Types problem

    by westony
    Replies
    20
    Views
    2,202

    TY to all of you I found my mistake it was in...

    TY to all of you I found my mistake it was in printf where i put %s instead of it i should placed %c !!!! ARGH!!!

    TNX AGAIN :)
  18. Thread: Types problem

    by westony
    Replies
    20
    Views
    2,202

    I just copy/paste the code you gave me for tests...

    I just copy/paste the code you gave me for tests

    http://img834.imageshack.us/img834/7935/21403503.png
  19. Thread: Types problem

    by westony
    Replies
    20
    Views
    2,202

    again crash but in second for loop !!!

    again crash but in second for loop !!!
  20. Thread: Types problem

    by westony
    Replies
    20
    Views
    2,202

    my VS shows me again that error :@ ; Unhandled...

    my VS shows me again that error :@ ;
    Unhandled exception at 0x5805d540 (msvcr100d.dll) in TestingZone.exe: 0xC0000005: Access violation reading location 0xcccccccc.

    My syntax is the same but with...
  21. Thread: Types problem

    by westony
    Replies
    20
    Views
    2,202

    If I read right there is no way to do it by my...

    If I read right there is no way to do it by my way ???
    Because there is no way to determine the number of menu

    and can you help me please understand the meaning of this size_t because in could...
  22. Thread: Types problem

    by westony
    Replies
    20
    Views
    2,202

    ok but isn't this printf("%c", menu[i]) join to...

    ok but isn't this printf("%c", menu[i]) join to print them pointer by pointer data comes here!!!



    i wanna print it symbol my symbol d a t a c o m e s h e r e ????
  23. Thread: Types problem

    by westony
    Replies
    20
    Views
    2,202

    Tnx for the welcome but i have char *menu[] =...

    Tnx for the welcome but i have

    char *menu[] = {"data", "comes", "here"};

    i know how to print it pointer by pointer but i wanna try to print it symbol by symbol

    i for get one i++ but this...
  24. Thread: Types problem

    by westony
    Replies
    20
    Views
    2,202

    Types problem

    void Prints(char **menu)
    {
    while(**menu)
    {

    printf("%s ", *(*(menu)+i));

    }
    }
Results 1 to 24 of 24