Search:

Type: Posts; User: sureshhewa

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    6,534

    i know those. i need practical exercises ...

    i know those. i need practical exercises


    eg: 2[9/4{(3+3)-2}]
    to check whether this expression correct or wrong we can use a stack and figure out brackect are placed in order or not

    i need...
  2. Replies
    7
    Views
    2,339

    thanks. i got your point

    thanks. i got your point
  3. Replies
    7
    Views
    2,339

    ok. think of it this way. now i have to write a...

    ok. think of it this way. now i have to write a programme. I have 2 strategies to solve it.
    1.I can use an extra structre array which will allocate160bytes
    2. I can put nested loop which will be...
  4. Replies
    4
    Views
    6,534

    Queues/Stack exercises

    if u guys have some Queues/Stack exercises please post me links.thank you!
  5. Replies
    7
    Views
    2,339

    efficiency of a programming

    when we consider efficiency of a programme, what is the main fact we have to consider about?? Is it Using less variables(Memory) or using less loops. I know we have to consider both. BUt what is the...
  6. Replies
    8
    Views
    2,142

    thank you soo much. Im little bit careless....

    thank you soo much. Im little bit careless. thanks for eveyone
  7. Replies
    8
    Views
    2,142

    strcpy(temp,name[i]);...

    strcpy(temp,name[i]);
    strcpy(name[i],name[min]);
    strcpy(name[min],temp[0]);


    you meant like this??
  8. Replies
    8
    Views
    2,142

    i tried both ways , didn't work

    i tried both ways , didn't work
  9. Replies
    8
    Views
    2,142

    sorting strings

    // string sorting

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

    int main(){

    char name[5][10]={"suresh","chanaka","sarith","Adnan","queen"};
    char temp[10];
  10. Replies
    2
    Views
    931

    thank you laserlight !!! that's the answer . i...

    thank you laserlight !!! that's the answer . i got your point
  11. Replies
    2
    Views
    931

    structure matter

    typedef struct element{

    long int license;
    char status,type,arrivalTime[SIZE],departureTime[SIZE],duration[SIZE];
    int moveCount;
    };


    typedef struct parking{
    element...
  12. Replies
    14
    Views
    9,577

    sorting 2D string array

    Please tell me how to sort 2D string array according to the alphabetical order.

    eg:

    cat
    rat
    dog
    ram

    Answer must be:
  13. Replies
    160
    Views
    1,220,342

    Sticky: Deital & Deital...

    Deital & Deital book is very good for beginners. Balaguruswami's book also a nice one for beginners
Results 1 to 13 of 13