Search:

Type: Posts; User: SUVIR

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    989

    please post for any improvement in program

    please post for any improvement in program
  2. Replies
    3
    Views
    989

    Understand mergesort with transition

    #include<stdio.h>
    #define max 10
    void mergesort(int array[max],int low,int high);
    void merge(int array[max],int k,int low,int high);
    void main()
    {
    int array[max],low=0,high=max-1,i;
    ...
  3. there no syntax error in program and program is...

    there no syntax error in program and program is compiling but when intopostfix function is called in it getop is called which should return desired value i.e if
    value entered is digit it returns 'o'...
  4. do anyone knows what to fix for output to work

    do anyone knows what to fix for output to work
  5. fix logical error in infix to postfix notation program

    #include<stdio.h>
    #include<ctype.h>
    #include<stdlib.h>
    #define max 100
    int stackpoint=0;
    int stackbuff[max];
    void push(int a);
    int pop();
    char getop(char infix[max]);
    int precedance(char l);
  6. when i run this program i find segmentation fault...

    when i run this program i find segmentation fault how can i remove this
  7. creating link list and reading it to print output

    #include<stdio.h>
    #include<string.h>
    #include<ctype.h>
    #include<stdlib.h>
    struct node
    {
    struct node *next;
    int nodevalue;
    };
    struct node *start,*tail;
  8. Thread: cant get output

    by SUVIR
    Replies
    6
    Views
    1,533

    so taking it as global variable can work

    so taking it as global variable can work
  9. Thread: cant get output

    by SUVIR
    Replies
    6
    Views
    1,533

    i changed it to if(c==EOF) ITS NOT...

    i changed it to


    if(c==EOF)


    ITS NOT WORKING YET
  10. Thread: cant get output

    by SUVIR
    Replies
    6
    Views
    1,533

    cant get output

    program doesnot hav syntax error but doesnot give its specified output might be some logical error cant find it.



    /* program to store runtime data in two multidimentional array and match them...
Results 1 to 10 of 10