Sunday, March 23, 2014

6 Tricks About Internships You Wish You Knew Before

with 3 comments
Internship's a Pre job experience that provides an opportunity for students and graduates to interact with professional works & to gain experiences is them most needed aspect for any field independent of career.Internships helps you to search out how industrial life looks without getting stuck into agreements & bonds.Internship's are the main key component in obtaining a Industrial expertise & it's the...

Friday, March 14, 2014

Anna University Final Year B.E/B.Tech Engineering Project Report Format UG Thesis

with 0 Comment
All Final year Engineering students must do their major engineering project at the 8th semester of their studies.Anna University have prescribed an engineering project report format for all engineering students doing their major engineering project in their respective domains.Anna university has neatly presented the format for the UG thesis document to be submitted in their 8th semester of their studies.Below is the format for the anna...

Wednesday, March 12, 2014

Learn PHP 5 Scripting Language in w3schools.com

with 0 Comment
PHP is the most popular server scripting language used in today's internet world.In world wide web(WWW),PHP is being used 81.9% ever since 1 Febrary 2014.So,Learning PHP in this Internet tech world is very important to be survived among great powers.i have found a great website that provides FREE online tutorials for PHP5 Server scripting language. It consists of PHP 5 Basics, PHP Forms,PHP Advanced,PHP Database,PHP XML,PHP and Ajax...

Monday, March 3, 2014

Electric Circuits AC DC Semiconductor Ebooks

with 0 Comment
Hai Engineers,Here we have uploaded 6 Electric Circuits Ebooks for Free Downloads.The Ebooks focus onLessons in Electric Circuits ACLessons in Electric Circuits DCLessons in Electric Circuits DigitalLessons in Electric Circuits ExperimentLessons in Electric Circuits ReferenceLessons in Electric Circuits SemiconductorDownlo...

Wednesday, February 26, 2014

Graduate Aptitude Test in Engineering for Electronics and Communication Enigneering Study Materials Ebooks

with 0 Comment
Hai Engineers,Here We have Uploaded Useful study materials for Gate preparation(ECE Stream).The Following Concepts are Uploaded  :)Amplitude ModulationCircuit TheoremsComplex VariablesDigital Electronics Question papersDiscrete Time SystemsNumber Systems and Boolean AlgebraOperational AmplifiersSemiconductor PhysicsSignals and SystemsTransfer FunctionsTransmission LinesDownload...

Cambridge Business English Certificates(BEC) Preliminary and Vantage Examination Study Materials

with 0 Comment
Hai Engineers, Cambridge University offers a Certification program in Business English Language(Professional English) through ESOL Examination Centre for all Student Engineers and other peoples in the name of BEC(Business English Certificates).BEC has three levels,BEC Preliminary (Suitable for All College Students) BEC Vantage (Suitable for Final year Students and job seeking candidates) BEC Higher (Needed for Working Professionals)All...

Cisco CCNA Study Guide Ebooks

with 0 Comment
Hai Engineers,here is the study guide for Cisco CCNA { Cisco Certified Network Associate (CCNA) } certification Program.Downlo...

MBA Entrance Exam Common Admission Test (CAT) Complete Study materials and Ebooks

with 0 Comment
Hai Engineers,For getting into IIM and starting your dream career with MBA course,its important to take up the MBA entrance exams and securing a good percentage. There are quite many MBA Entrance Exams in India for doing Master of Business administration in Post graduation. The main and notable exam is The CAT (common admission test) for MBA.It is important to bell the cat for getting into IIMs. So,here are providing you with various...

Green Computing and Linux Power management Ebooks and Video Lectures

with 0 Comment
What is Green Computing?Green computing, green IT or ICT Sustainability, refers to environmentally sustainable computing or IT. In the article Harnessing Green IT: Principles and Practices, San Murugesan defines the field of green computing as "the study and practice of designing, manufacturing, using, and disposing of computers, servers, and associated subsystems—such as monitors, printers, storage devices, and networking and communications systems — efficiently and effectively with minimal or...

CISCO CCNA PPTs Study Materials for All 4 Modules

with 0 Comment
CISCO CCNA PPTs Study Materials for All 4 Modules for Cisco CCNA Certification Program.These PPTs are prepared from the Trainers of CISCO CCNA Training center.These materials covers the all the modules of CISCO CCNA syllabus includingAccessing WANLAN SwitchingNetwork AccessingRouting AccessingDownload...

Placement Papers of 65 Leading Companies in India

with 0 Comment
Huge Collection of Placement Papers for 65 Leading Companies in India:AAIABBAccentureAditiAdobeAgreeyaAlcatel LucentAlumnusAmazonAmdocsAmerican MegaTrendsAndhra bankAricentAshok LeylandAspireBajajBank of MaharashtraBELBHELBirlasoftBlue StarBOBBPLBrakes IndiaBSNLCadenceCalsoftCanara BankCanarysCiscoCiticorpCMCCromptonDellDeloitteDeutsche BankEricssonEssarGodrejGoogleHCLHoneywellIBMICICIIndian Air ForceInfosysInfoTechISROL and TMahindra...

Wednesday, February 19, 2014

C Program to Perform Copying Content of One File Into Another File

with 0 Comment
#include<stdio.h>#include<conio.h>void main(int argc,char *argv[]){FILE *fp,*fp1;int i;char oout[40];fp=fopen(argv[1],"w");for(i=3;i<argc;i++){fprintf(fp,"%s\n",argv[i]);}fclose(fp);fp=fopen(argv[1],"r");fp1=fopen(argv[2],"w");for(i=3;i<argc;i++){fscanf(fp,"%s\n",out);fprintf(fp1,"%s\n",out);}fclose(fp);fclose(fp1)...

C Program to Display Student Details Using File

with 0 Comment
#include<stdio.h>#include<conio.h>void main(){FILE *fp;char name[10][10],gr[10][10],res[10][10];int m1[10],m2[10],m3[10],tot[10],n,rno[10],i;float avg[10];clrscr();fp=fopen("stud.txt","w");printf("\nStudent Detail Using File:\n");printf("\n*********************\n");printf("\nEnter the Number of Students:\n");scanf("%d",&n);for(i=1;i<=n;i++){printf("\nEnter the Student Name:\n");scanf("%s",name[i]);printf("\nEnter the Student Number:\n");scanf("%d",&rno[i]);printf("\nEnter the Student Marks:\n");scanf("%d%d%d",&m1[i],&m2[i],&m3[i]);fprintf(fp,"%s\t%d\t%d\t%d\t%d\n",name[i],rno[i],m1[i],m2[i],m3[i]);}fclose(fp);fp=fopen("stud.txt","r");printf("\n\t\tStudent...

C Program to Perform Swapping of Two Numbers Using Pointers

with 0 Comment
#include<stdio.h>#include<conio.h>void main(){int a,b,c;int *x,*y;clrscr();printf("\t\n Swapping of two numbers using Pointers\n");printf("\t\n********************************\n");printf("\n 1.Using Temporary Variable\n");printf("\n 2.Without Using Temporary Variable\n");printf("\n 3.Exit\n");printf("\n Enter your choice:\n");scanf("%d",&c);switch(c){case 1:printf("\n Input:\n");printf("\n*****\n");printf("\nBefore Swapping\n");printf("\n*************\n");printf("\nEnter the a value:\n");scanf("%d",&a);printf("\nEnter...

C Program to Calculate Electricity Bill Using Structure

with 0 Comment
#include<stdio.h>#include<conio.h>struct{char name[20][20];int unit,curr,prev,amt;int eno;}ebill[10];void main(){int i,n;clrscr();printf("\tElectricity bill\n");printf("\t************\n");printf("Enter the limit to customer\n");scanf("%d",&n);printf("Enter the customers details\n");printf("*********************\n");for(i=1;i<=n;i++){printf("\nEnter %d customer details\n",i);printf("Enter the customer number\n");scanf("%d",&ebill[i].eno);printf("Enter the customer name\n");scanf("%s",&ebill[i].name);printf("Enter...

C Program to Display Students Mark Details Using Structure

with 0 Comment
#include<stdio.h>#include<conio.h>void main(){struct student{char name[50],grade[20],res[20];int rollno,m1,m2,m3,tot;float avg;}s[50];int n,i;clrscr();printf("\n\tStudent Details");printf("\n\t************\n");printf("\nEner the Number of Students:\n");scanf("%d",&n);for(i=0;i<n;i++){printf("\nEnter the Student Name:");scanf("%s",&s[i].name);printf("\nEnter the Roll no:");scanf("%d",&s[i].rollno);printf("\nEnter the mark1:");scanf("%d",&s[i].m1);printf("\nEnter the mark2:");scanf("%d",&s[i].m2);printf("\nEnter...

C Program to Find NCR and NPR Using Recursive Function

with 0 Comment
#include<stdio.h>#include<conio.h>int fact(int n);void main(){int n,r,ncr,npr,n1,n2,n3,n4;clrscr();printf("\n NCR & NPR Using Recursive Function:\n");printf("\n-------------------------------------------\n");printf("\nInput:\n");printf("\n********\n");printf("\nEnter the n value:\n");scanf("%d",&n);printf("\nEnter the r value:\n");scanf("%d",&r);n3=n-r;n1=fact(n);n2=fact(r);n3=n-r;n4=fact(n3);ncr=n1/(n2*n4);npr=n1/n4;printf("\nOutput:\n");printf("\n********\n");printf("\nNCR Value is:%d",ncr);printf("\nNPR...

C Program to Find Largest Element in an Array

with 0 Comment
#include<stdio.h>#include<conio.h>int big(int n,int a[]);void main(){int n,i,a[50],c;clrscr();printf("\t Largest Element in an Array:\n");printf("\t **********************\n");printf("\nInput:\n");printf("\n--------\n");printf("\nEnter the Number:\n");scanf("%d",&n);printf("\nEnter the Number one by one:\n");for(i=0;i<n;i++){scanf("%d",&a[i]);}c=big(n,a);printf("\nOutput:\n");printf("\n---------\n");printf("\nThe Biggest Value is:%d",c);getch();}int big(int n1,int a[20]){int b=a[0],i;for(i=0;i<n1;...

C Program to Find Fibonacci Series Using Function

with 0 Comment
#include<stdio.h>#include<conio.h>int fib(int);void main(){int n,i;clrescr();printf("\t Fibonacci Series Using Function:\n");printf("\t **************************\n");printf("\nInput:\n");printf("\n------\n");printf("\nEnter the Number:\n");scanf("%d",&n);printf("\n Output:\n");printf("\n---------\n");printf("\nFibonacci Series is:");fib(n);getch();}int fib(int n1){int i,f1=-1,f2=1,f3;for(i=1;i<=n1;i++){f3=f1+f2;f1=f2;f2=f3;printf("\n \n %d",f3);}return(f3)...

C Program to Find Factorial Value Using Function

with 0 Comment
#include<stdio.h>#include<conio.h>int fact(int);void main(){int n,i,f;clrscr();printf("\t Factorial Value Using Function:\n");printf("\t *************************\n");printf("\nInput:\n");printf("\n---------\n");printf("\nEnter the Number:\n");scanf("%d",&n);f=fact(n);printf("\n Output:\n");printf("\n --------\n");printf("\n Factorial Value is:%d",f);getch();}int fact(int n1){int i,s=1;for(i=1;i<=n;i++){s=s*i;}return(s)...

C Program for Sorting the Names in Alphabetical Order

with 0 Comment
#include<stdio.h>#include<conio.h>#include<string.h>void main(){char name[20][15],t[20][15];int i,j,n;clrscr();printf("\n Sorting the names in Alphabetical Order\n");printf("\n *******************************\n");printf("\n Enter the Number of Names \n");scanf("%d",&n);printf("\n Enter the Name one by one\n");for(i=0;i<n;i++){scanf("%s",name[i]);}for(i=0;i<n;i++){for(j=i+1;j<n;j++){if(strcmp(name[i],name[j])>0){strcpy(t[i],name[i]);strcpy(name[i],name[j]);strcpy(name[j],t[i]);}}}printf("\n...

C Program for Sorting the Characters in Alphabetical Order

with 0 Comment
#include<stdio.h>#include<conio.h>#include<string.h>void main(){char name[10],t;int i,j,n;clrscr();printf("\n Sorting the Characters in Alphabetical Order \n");printf("\n Enter the Name\n");scanf("%s",name);n=strlen(name);printf("\nLength of Characters: %d",n);for(i=0;i<n;i++){for(j=i+1;j<n;j++){if(name[i]>name[j]){t=name[i];name[i]=name[j];name[j]=t;}}}printf("\n OUTPUT:\n");printf("\n Sorting the Characters \n");for(i=0;i<n;i++){printf("\n %c",name[i]);}getch()...

C Program to Perform String Manipulation Using Built in Function

with 0 Comment
#include<stdio.h>#include<conio.h>#include<string.h>void main(){char str1[20],str2[20];int l,s,y,ch;clrscr();do{printf("\n Menu\n");printf("\n 1.Concatenation\n");printf("\n 2.Length\n");printf("\n 3.Copy\n");printf("\n 4.Comparison\n");printf("\n 5.Reverse\n");printf("\n 6.Exit\n");printf("\n Enter our choice\n");scanf("%d",&ch);switch(ch){case 1:printf("\n Concatenation of the String\n");printf("\n************************************\n");printf("\n Enter the String1\n");scanf("%s",str1);printf("\n Enter...

C Program to Display Students Mark Details Using Array

with 0 Comment
#include<stdio.h>#include<conio.h>void main(){char name[20][20],result[20][20],grade[20][20];int sno[20],m1[20],m2[20],m3[20],total[20],n,I,s=1;float avg[20];clrscr();printf("Student Mark Details\n");printf("*****************\n");printf("Enter the number of students\n");scanf("%d",&n);for(i=1;i<=n;i++){printf("Student:%d\n",i);printf("Enter the Student number\n");scanf("%d",&sno[i]);printf("Enter the Student name\n");scanf("%s",name[i]);printf("Enter the Mark1\n");scanf("%d",&m1[i]);printf("Enter...

C Program to Perform Transpose of a Matrix

with 0 Comment
#include<stdio.h>#include<conio.h>void main(){int a[50][50],b[50][50],i,j,r,c;clrscr();printf("\t Trtanspose Matrix:\n");printf("\t ***************\n");printf("Input:\n");printf("****\n");printf("\nEnter the order of matrix:\n");scanf("%d %d",&r,&c);printf("\nEnter the element of the matrix:");for(i=1;i<=r;i++){for(j=1;j<=c;j++){scanf("%d",&a[i][j]);}}printf("\n Given Matrix is:\n");printf("\n*************\n");for(i=1;i<=r;i++){for(j=1;j<=c;j++){printf("%d\t",&a[i][j]);}printf("\n");}printf("\nOutput:\n");printf("\n*****\n");printf("\nTranspose...

C Program to Perform Matrix Multiplication

with 0 Comment
#include<stdio.h>#include<conio.h>void main(){int a[50][50],b[50][50],x[50][50];int i,j,r,r1,c,c1,k;clrscr();printf("\t Matrix Multiplication:\n");printf("\t ***********\n");printf("Input:\n");printf("****\n");printf("\nEnter the order of first matrix:\n");scanf("%d %d",&r,&c);printf("\nEnter the order of second matrix:\n");scanf("%d %d",&r1,&c1);if(c==r1){printf("\nEnter the element for the first matrix:\n");for(i=1;i<=r;i++){for(j=1;j<=c;j++){scanf("%d",&a[i][j]);}}printf("\nFirst Matrix...

C Program to Perform Matrix Subtraction

with 0 Comment
#include<stdio.h>#include<conio.h>void main(){int a[50][50],b[50][50],x[50][50];int i,j,r,r1,c,c1;clrscr();printf("\t Matrix Subtraction:\n");printf("\t ***************\n");printf("Input:\n");printf("****\n");printf("\nEnter the order of first matrix:\n");scanf("%d %d",&r,&c);printf("\nEnter the order of second matrix:\n");scanf("%d %d",&r1,&c1);if(r==r1 && c==c1){printf("\nEnter the element for the first matrix:\n");for(i=1;i<=r;i++){for(j=1;j<=c;j++){scanf("%d",&a[i][j]);}}printf("\nFirst...

C Program to Perform Matrix Addition

with 0 Comment
#include<stdio.h>#include<conio.h>void main(){int a[50][50],b[50][50],x[50][50];int i,j,r,r1,c,c1;clrscr();printf("\t Matrix Addition:\n");printf("\t**********\n");printf("Input:\n");printf("****\n");printf("\nEnter the order of first matrix:\n");scanf("%d %d",&r,&c);printf("\nEnter the order of second matrix:\n");scanf("%d %d",&r1,&c1);if(r==r1 && c==c1){printf("\nEnter the element for the first matrix:\n");for(i=1;i<=r;i++){for(j=1;j<=c;j++){scanf("%d",&a[i][j]);}}printf("\nFirst...
Powered by Blogger.

Blog Archive