uploadeddate[];
startdate[];
date enddate[];
User Profile
Collapse
-
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
{... -
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") ;... -
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};... -
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...
No activity results to display
Show More
Leave a comment: