For New Scheme Go here
http://210.212.24.27/mgcbcss/bTech/index.php?module=public&attrib=result&page=result
Others
http://210.212.24.27/mgcbcss/result.ph...
linklist
- homehome
- MG Btech SyllabusMG Btech Syllabus
- C/C++/JAVA ProgrammingC/C++/JAVA Programming
- EBooks,Study MaterialsEBooks,Study Materials
- Aptitude PapersAptitude Papers
- Online Engineering CalculatorsOnline Engineering Calculators

Custom Search
Friday, 31 August 2012
Windows 8 tricks
Disable the Lock ScreenWindows 8 shows a lock screen when you restart your computer,log out, or lock it. Its very pretty, but it just adds one more keystroke to the login process. You can actually disable the lock screen entirely, although Microsoft hides his option very well.This option is located in the Group Policy Editor. To launch it, type gpedit.msc at the Start screen and press Enter.In the Group Policy Editor, navigate to Computer Configuration\Administrative Templates\Control Panel\Personalization.Double-click the Do not display the lock screen option, set it to Enabled, and click OK.The next time you restart your system, log out, or lock the screen, you'll see the login screen instead of the lock screen.
Display Administrative ToolsBy default, Windows hides the Event Viewer, Computer Management and other Administrative Tools from the Start screen. If you use these applications frequently, you can easily unhide them.From...
Polynomial Additon
Author: Sanif S S
Site: theeduzone.blogspot.com
Email: sanifss@gmail.com
#include<stdio.h>
#include<conio.h>
struct poly
{
int coef;
int exp;
};
class polynomial
{ poly p[10];
int n;
public:
void read();
void display();
polynomial operator+(polynomial);
};
void polynomial::read()
{
poly temp;
cout<<"Enter number of terms\n";
cin>>n;
for(int i=0;i{
cout<<"Enter coefficient"<<" "< cin>>p[i].coef>>p[i].exp;
}
for( i=n-1;i>0;i--)
{
for(int j=0;j {
if(p[j].exp
{
temp=p[j];
p[j]=p[j+1];
p[j+1]=temp;
}
}
}
}
void polynomial::display()
{
for(int i=0;i {
cout<
if(i!=n-1)
cout<<"+";
}
cout<<"\n";
}
polynomial polynomial::operator...
Subscribe to:
Posts (Atom)