Search:

Type: Posts; User: raghu_equinox

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,063

    please try this code #include...

    please try this code


    #include<stdio.h>
    #include<conio.h>
    main()
    {
    int a,b;
    printf("\nEnter the values of a and b:\n");
    scanf("%d%d",&a,&b);
  2. Replies
    6
    Views
    1,063

    no..i dont think its a coincidence ..i changed...

    no..i dont think its a coincidence ..i changed the values of a,b,c but still the output is the same...ie printing a b c in reverse order....
  3. Replies
    14
    Views
    2,997

    oo..this is great...if ur using windows just tupe...

    oo..this is great...if ur using windows just tupe color 0A in the console and then run ur programs ...i dont know why ur bothered abuot the color so much
  4. Replies
    6
    Views
    1,063

    help needed for printf()

    accidentally i wrote this code and got some output but why like this....


    main()
    {
    int a=1,b=2,c=3;
    printf("%d%d%d");
    }
  5. Replies
    3
    Views
    1,118

    why my programming is termination ...

    hi .i was just trying to know what i observer with this code...


    #include<stdio.h>
    #include<conio.h>
    void main()
    {
    int a[10],i;
    clrscr();
    for(i=0;i<10;i++)
  6. Replies
    5
    Views
    2,150

    how to create own header file

    please tell me how to create own header files.Can someone tell me with a small example
  7. when i push an item in to stack 1 i get the...

    when i push an item in to stack 1 i get the contents of the stack as item-0-0 etc....
    but when i pop the element my top and bottom(top,bot) of the stack are moving but i am unable to display the...
  8. Please Help Me With This Code Of Implementing Stacks

    i want to implement multiple stacks using arrays..I am able to create ,insert and print them but not poping an element form any of the stack..This is what i have


    #include<stdio.h>...
  9. i want to print my linked list in the reverse order please help

    i want to print my list in the reverse..ie..the last item first and first one last..
    i am new to this ..i have created the list and printed it but couldnt do that in reverse order ..please help

    ...
  10. how to add new item at the end of linked list

    i want to add a new item to end of linked list..my function addlast will do this
    this is my code


    #include<stdio.h>
    #include<conio.h>
    #include<alloc.h>
    #define NULL 0
  11. thanks

    thanks
  12. Great Please Help Me With My Code

    Great Please Help Me With My Code
  13. how to remove last item of linked list please

    i want to remove the last item of the linked list..my 'rmlast' function does this
    but i couldnt do that please help


    #include<stdio.h>
    #include<conio.h>
    #include<malloc.h>
    #define NULL 0
    ...
  14. Replies
    4
    Views
    1,580

    uuable to insert item to linked list

    hi
    I was doing a program for inserting a item in to the linked list..i have to insert the item before the fist one..something is wrong with my ins_first() function
    just help me out


    void...
  15. Replies
    12
    Views
    2,634

    ya..there is a way.. just decalre a variable of...

    ya..there is a way..
    just decalre a variable of type char and use scanf to read it..i think it will work..u can also do with int
  16. Replies
    2
    Views
    1,152

    YES your r right.Actually ,i am not working on my...

    YES your r right.Actually ,i am not working on my system now.So my program is not with me now.Sorry..
    THANKS FOR REPLYING...SORRY AGAIN.. i will post my program 2maro
  17. Replies
    2
    Views
    1,152

    please help me

    hello friends...
    I require a C program for implementation of queues using arrays..
    My code is unable to do all the functions ie..INSERT,DELETE,EMPTY ..
    Please some help me ..
Results 1 to 17 of 17