Search:

Type: Posts; User: gvkalra

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    2,710

    thanks for replying ..... i would now search out...

    thanks for replying ..... i would now search out the details over the net .....
  2. Replies
    8
    Views
    2,710

    m sorry for the indentation, but i just copied...

    m sorry for the indentation, but i just copied the code of SVXX and modified it a bit ......... for main() & <iostream.h> , may i know what's the difference? bcoz at the level i am studying, i don't...
  3. Replies
    8
    Views
    2,710

    code 3 modified a little bit too ........ ...

    code 3 modified a little bit too ........


    #include<iostream.h>
    #include<conio.h>
    void main() {
    cout << "\nEnter the number of terms - ";
    int n;
    cin >> n;
    int ctr = 0; //counter...
  4. Replies
    8
    Views
    2,710

    here is a little modified case 2 program, tested...

    here is a little modified case 2 program, tested .....

    #include<iostream.h>
    #include<conio.h>
    void main() {
    cout << "\nEnter any limit";
    int l;
    cin >> l; //The limit
    int num, sum=0,...
  5. Replies
    4
    Views
    3,780

    Off course yes! ..... There is hardly anything...

    Off course yes! ..... There is hardly anything that you can't do while programming..... Just try it out once, using the basic concepts of the conversion ..... Ask if your not able to get it down...
  6. Replies
    6
    Views
    1,572

    what am currently doing is researching on all the...

    what am currently doing is researching on all the techniques that one would have ignored if not known ....... e.g.

    C++ stream I/O is a very flexible and safe method of doing input and output. It...
  7. Replies
    6
    Views
    1,572

    c++ time saving techniques

    Hi ....
    Could you please refer me some materials for effective c++ time saving techniques, apart from the Dummies Reference Manual ......... It would be really very helpful if someone could...
  8. Replies
    3
    Views
    2,545

    temp=traverse->next; //Stores Node to be deleted...

    temp=traverse->next; //Stores Node to be deleted in temp
    cout<<temp->id;
    cout<<traverse->id;
    delete traverse; //Deletes the Node
    traverse=temp; //Assigns the previous node the...
  9. A leap year has a property that it's divisible by...

    A leap year has a property that it's divisible by 4. Divisibility by 4 means that you can check for the last two digits (the least significant) to be divisible by 4 as well.

    That's what you need...
  10. Replies
    3
    Views
    2,545

    Linked List Node Deletion based on Data

    I was given an Assignment to Create a C++ program to input ID, Semester, Name of a student via Linked Lists. The functions to be implemented were Add, Search and Delete a Student.
    I have completed...
Results 1 to 10 of 10