Search:

Type: Posts; User: nurulsiddik

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,161

    #Preprocessor commands

    Hello,
    Can any one let me know when this will work.

    #if 0
    printf("hello");
    #endif

    I am not able to understand this line as i think will never get compiled because the condition fails as...
  2. Replies
    4
    Views
    1,061

    if ( p != NULL ) { printf( "Position=%d\n",...

    if ( p != NULL ) {
    printf( "Position=%d\n", p-array );
    }

    Salem this is code is working thanks...:D
  3. Replies
    4
    Views
    1,061

    Answer found for index of string

    hi i think i found a way no other way except to write your own function.

    int strindx(char *src,char *key)
    {
    char *ch;
    int len_src,len_key;

    ch = strstr(src,key);
    len_src =...
  4. Replies
    4
    Views
    1,061

    Hi, Thanks for your help but I want the index...

    Hi,
    Thanks for your help but I want the index number in the array from where the find starts i.e 7 as "how" starts from 7 position in "Hellow how are you?" string.

    Thanks.
  5. Replies
    4
    Views
    1,061

    function for Search string

    Hello,
    I want to search a string from a source string. for eg. I want to search "how" from the string "Hello how are you?"
    Is there any function available in the standard c library which would...
  6. Replies
    2
    Views
    3,985

    Linker Error: Fixup Overflow

    Hello,
    Well I am having a problem? I am getting Linker error which says :FIXUP OVERFLOW at _TEXT:005C,target = _CLOSE in Module FCLOSE".And same fixup overflow error with FOPEN. My program is...
  7. Replies
    1
    Views
    1,877

    How to create a project

    I have two c files. One is projmain.c and another support.c included in projmain.c. This are some graphics program. When i create exe in my machine and run it on other machine it gives me the...
  8. Replies
    1
    Views
    4,896

    How to accept input in graphics mode

    I want to accept the input from keyboard in graphics mode from a particular x,y co-ordinate. How to do it?
Results 1 to 8 of 8