Search:

Type: Posts; User: k.vijayabhaskar

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    6,119

    curser position =========== by using...

    curser position
    ===========



    by using gotoxy() function we can place the curser in required place.


    syntax :
    ==========
  2. the way to find min, max values from a list ...

    the way to find min, max values from a list
    ================================



    main()
    {
    FILE *fp;
    int x;
    char filename[12];
  3. Replies
    2
    Views
    976

    what are the compilers in c

    what are the compilers in c
  4. Replies
    6
    Views
    6,849

    how can i insert element in array

    this is the code to insert an element in to array
    -------------------------------------------------------------

    main()
    {
    int a[10],i,key,pos;

    scanf("%d",&n);
    ...
  5. reverse the string without loops

    this can be done by using recursion also

    code:

    main()
    {
    reverse();
    }
    void reverse()
    {
Results 1 to 5 of 5