- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Energetic and Hardworking
- Interests
- Programming
9 Posted Topics
Re: C++ by Herbert Schildt is the best book to refer. Constructors, destructors, Templates all topics are explained properly in the book | |
Re: 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 | |
Re: 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 … | |
Re: 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 … | |
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 // … | |
Re: [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 … | |
Re: 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]; | |
Re: 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 |
The End.