Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~11.2K People Reached
About Me

Energetic and Hardworking

Interests
Programming
Favorite Tags

9 Posted Topics

Member Avatar for Dave Sinkula

C++ by Herbert Schildt is the best book to refer. Constructors, destructors, Templates all topics are explained properly in the book

Member Avatar for shahidali6
11
10K
Member Avatar for thompsonSensibl

The same course is always taught by the same teacher? 0ne Course is taught by one teacher so Course is dependent on the teacher, so u get one dependency Rest you can resolve

Member Avatar for Divyab
0
113
Member Avatar for thompsonSensibl

Boyce Codd normal form helps in removing the deletion, updation and insertion anomalies. In BCNF we decompose the FD's in a way that we divide the relation giving us the details into two tables depending upon the primary keys Take an example X,Y->Z Z->Y The above FD's are a type …

Member Avatar for Divyab
0
86
Member Avatar for ObjectOriented

Private and Public are called as access specifiers Private members are the ones which are not visible outside the class and Public members are visible outside the class by the member functions of the class or by other functions using an object of the class. Another access specifier is Protected …

Member Avatar for Divyab
-1
308
Member Avatar for Divyab

hey plzz help... i'm encountering many errors in dis code segment.. plz try n remove d errors asap... n tell me how to generate a database in C++[code]/* ----------------------------------------------------------------------------- -------------- PROGRAM TO IMPLEMENT THE PAYROLL OF EMPLOYEES ---------------- ----------------------------------------------------------------------------- */ #include<fstream.h> #include<fstream.h> #include<conio.h> #include<stdio.h> #include<stdlib.h> #include<string.h> #define MAX 50 // …

Member Avatar for LevyDee
0
154
Member Avatar for eduard77

[QUOTE=eduard77;1088008]Hello I am really new in c++ but I read a lot of books. But I haven't found in any book how to add an interface to my program. So, what is necessary that the program to not run in the windows console?[/QUOTE] the first thing to do is search …

Member Avatar for eduard77
0
202
Member Avatar for progag

i'm writing only the main part void main() { int a[10][10], b[10][10],i,j,k n,m,s; cin>>n; for(i=1;i<=n;i++) { for(j=1;j<=n;j++) { cin>>a[i][j]; } } cin>>m; for(i=1;i<=m;i++) { for(j=1;j<m;j++) { cin>>b[i][j]; } } if(m!=n) exit(); else { for(i=1;i<=n;i++) { for(j=1;j<=n;j++) { c[i][j]=0; for(k=1;k<=n;k++) c[i][j]=a[i][k]*b[k][j]+c[i][j]; } } } now output c[i][j];

Member Avatar for Dave Sinkula
0
95
Member Avatar for confusedndazed
Member Avatar for lovely soso

do one thing create a class cube wid 3 variables length, width,depth n 3 functions getvalue, calcubic, printcube get the values of the varialbles in getvalue n in calcubic take a variable x n store length*width*depth in it print value of x in print cube

Member Avatar for Divyab
0
90

The End.