User Profile

Collapse

Profile Sidebar

Collapse
humsafar
humsafar
Last Activity: Nov 18 '08, 12:35 PM
Joined: Nov 5 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • how to declare date type in c++ foe example duedate or uploaded date etc

    uploadeddate[];
    startdate[];
    date enddate[];
    See more | Go to post

  • humsafar
    started a topic please help in removing erroes in this c++ code
    in C

    please help in removing erroes in this c++ code

    #include <iostream.h>
    #include <stdlib.h>
    #include <stdio.h>
    Class StudyProgram
    {
    Public:
    StudyProgram ();
    Void add StudyProgram ();
    Void edit StudyProgram ();
    Void delete StudyProgram ();
    Private:
    Char name[];
    Char code[];
    Char prerequisites[];
    Int duration[];
    Int total credit hours[];
    };
    Class course
    {...
    See more | Go to post

  • how to calculate time comlexity of the given algorithm code

    #include<iostre am>
    #include<stdlib .h>
    using namespace std;

    int main(){
    int i, j, n;
    for(i=0;i<n; i++){

    for(j=0; j<n; j++){
    cout<<"my time complexity is = "<<i*j<<end l;
    }
    cout<<"complexi ty is increasing"<<j< <endl;
    }
    system("pause") ;...
    See more | Go to post

  • humsafar
    replied to i want help in visual c++ code
    in C
    thanks but i am not going to compile it i tried and get this solution please tel me is it correct or not
    struct MyStructure
    {
    char MyString[40];
    int MyInteger;
    };

    MyStructure Variable[14];
    MyStructure * Variable Ptr;
    MyStructure Variable = {"hello sir",50};...
    See more | Go to post

    Leave a comment:


  • humsafar
    started a topic i want help in visual c++ code
    in C

    i want help in visual c++ code

    Consider the following code:
    struct MyStructure
    {
    char MyString[40];
    int MyInteger;
    };

    MyStructure StructVariable[20];
    MyStructure *StructPointer;

    StructPointer = StructVariable;

    i. Does this code have any error(s)? If there correct it.
    ii. Store some values (in member variables MyString and MyInteger) in 15th element of...
    See more | Go to post
No activity results to display
Show More
Working...