Search:

Type: Posts; User: kashiqirphan

Search: Search took 0.00 seconds.

  1. Replies
    10
    Views
    4,158

    Thanks for helping me laserlight

    Thanks for helping me laserlight
  2. Replies
    10
    Views
    4,158

    Still the same. . . . Still Not working

    Still the same. . . . Still Not working
  3. Replies
    2
    Views
    6,973

    Open a text file in Notepad using C

    Is it possible to open a text file in Notepad using C ???
  4. Replies
    10
    Views
    4,158

    This is the simplest program I made ...

    This is the simplest program I made



    #include<stdio.h>
    #include<string.h>
    main()
    {
    char SEmpNam[20],EmpNam[100][20]={{"Jack"},{"Mike"}};
    int i,j;
  5. Replies
    10
    Views
    4,158

    I tried using this if(strcmp(SEmpNam,...

    I tried using this

    if(strcmp(SEmpNam, EmpNum[i]) == 0)

    instead of

    if(SEmpNam[j]==EmpNum[i][j])

    Now i don`t get any compilation error but when I tried to execute it the program...
  6. Replies
    10
    Views
    4,158

    Sorry I did not mention I am getting an error...

    Sorry I did not mention
    I am getting an error that says
  7. Replies
    10
    Views
    4,158

    Search for a string in C

    In in the learning phase of C and I have the following problem
    I have an two dimentional array of charater that is used to store a list of employee names and I wish to search the list for a...
  8. Replies
    10
    Views
    12,991

    I thought you might be kind enough to share your...

    I thought you might be kind enough to share your knowledge but am obviously wrong..... Sorry for asking you to explain
  9. Replies
    10
    Views
    12,991

    Thanks Salem. Can you pls explain your code ...

    Thanks Salem.
    Can you pls explain your code

    void foo ( char array[] );
  10. Replies
    10
    Views
    12,991

    Array size problem in C

    Is it possible to declare an array without specifying the size of the array ?
    I tried this

    int i[];
    also tried this

    int i[]={};

    but none of this seems to work..... Pls help me......
Results 1 to 10 of 11