Posts

Q.Write a program to find palindrome string using string functions.

Image
Program: #include < stdio.h > #include < conio.h > #include < string.h > void main() {     char a[30];     int b,c=0,i=0,j;     clrscr();     printf (" Enter the String: ");     scanf ("%s",a);     b=strlen(a);     j=b-1;     while (a[i]==a[j])     {         ++c;         ++i;         --j;     }      if (c==b)          printf ("\n String is Palindrome ");     else         printf ("\n String is not a palindrome ");     getch() ; } Sample Output:      Note:     " Hi I am a Learner of C/C++. I have done this program with my own Knowledge. There may be an easy way to solve this program. So ...

Some Useful Websites for Placement.. Try Your Best ~ Improve Your Skills ~ Success will follow you..

Image
Dear Friends I got Some useful websites that will help us a lot for the placement.. If you find any other useful websites,then kindly share us by your comment. Wish you all a great Success for Your Great Career. Website Links for Preparation: http://www.indiabix.com http://www.m4maths.com http://www.preexams.com http://www.aptitudetest.com Share any websites that will be helpful for us all... Website Links for JOB SEARCH: http://www.naukri.com   http://www.indianjobsite.com/ http://www.bharatcareers.com/ http://www.timesjobs.com/ http://india.recruit.net/ http://www.monsterindia.com/ http://www.clickjobs.com/ http://www.jobs-bank.com/index.php http://www.careerkhazana.com/ http://jobsearch.rediff.com/ http://www.careerjet.co.in/ http://www.career1000.com/careers/ http://www.bixee.com/ http://www.jobsbazaar.com/ http://www.careerage.com/ http://www.placementindia.com/ http://www.caree...

திருமணமானவர்கள் ­ கீழே உள்ள செய்தியைப் படிக்கவேண்டாம்

Image
ஒரு பெண்மணி நடு இரவில் தூக்கத்தில் எழுந்து தன் கணவர் அருகில் இல்லாததை உணர்ந்து அவரைத் தேடினார்!. வீடு முழுவதும் தேடி, கடைசியில் அவர் சமையலையறையில் அமர்ந்திருந்ததை­க் கண்டார், அவருக்கு முன்னால் காபி இருந்தது. அவர்ஆழ்ந்த சிந்தனையில் சுவரை வெறித்துப் பார்த்தபடி அமர்ந்திருந்தார். இடையிடையே கண்ணில் வழியும் கண்ணீரைத் துடைத்தபடி காபியை அருந்திக் கொண்டிருப்பதைக் ­ கண்டார். மனம் பதைபதைத்து அவர் அருகில் சென்று, இதமாகக் கையைப் பிடித்து, “என்ன ஆயிற்று? இந்த நடு இரவில் இங்கே வந்து தனியாக அமர்ந்திருக்கிறீர்களே?” என்று கேட்டார். கணவன்: உனக்கு நினைவிருக்கிறதா? 20 வருடங்களுக்கு முன்னால் உனக்கு 18 வயதாகும் போது நாம் இருவரும் தனியாக பார்க்கில் சந்தித்தோமே? மனைவி: ஆமாம், நினைவிருக்கிறது. கணவன் (தொண்டை அடைக்கக் கமறலுடன்): அன்று உன் அப்பாவிடம் இருவரும் மாட்டிக்கொண்டோமே? மனைவி: ஆமாம் (கணவரின் கண்களைத் துடைத்து விடுகிறார்) கணவன்: என் நெற்றிப்பொட்டில் துப்பாக்கியை வைத்து “மரியாதையாக என் பெண்ணைத் திருமணம் செய்து கொள்கிறாயா? இல்லை, 20 ஆண்டுகள் உன்னை ஜெயிலுக்கு அனுப்பவா?” என்று உன்...

GATE 2013-2014 Syllabus for Electronics and Communication Engineering (EC)

Image
ENGINEERING MATHEMATICS Linear Algebra : Matrix Algebra, Systems of linear equations, Eigen values and eigen vectors. Calculus : Mean value theorems, Theorems of integral calculus, Evaluation of definite and improper integrals, Partial Derivatives, Maxima and minima, Multiple integrals, Fourier series. Vector identities, Directional derivatives, Line, Surface and Volume integrals, Stokes, Gauss and Green’s theorems. Differential equations : First order equation (linear and nonlinear), Higher order linear differential equations with constant coefficients, Method of variation of parameters, Cauchy’s and Euler’s equations, Initial and boundary value problems, Partial Differential Equations and variable separable method. Complex variables : Analytic functions, Cauchy’s integral theorem and integral formula, Taylor’s and Laurent’ series, Residue theorem, solution integrals. Probability and Statistics : Sampling theorems, Conditional probability, Me...

Q. Write a C program to generate pascal triangle or Write a C program to print following number triangle :

Image
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 Solution: #include< stdio.h > #include< conio.h > void main() {     int a,b,i,j,d[30],t[30];     clrscr();     printf (" Enter the max limit: ");          scanf ("%d",&a);     b=a;     for (i=0;i< a;i++)     { //Initialisation..         t[0]=1; t[i]=1; d[0]=1; //Spacing..          for (j=0;j< b-1;j++)             printf (" ");         b--; //Calculation..          for (j=1;j<=i;j++)         {         d[j]=t[j-1]+t[j];         }         d...

10 Best moments in life

Image
- To finish your last exam.. - To wake up and realize its still possible to sleep "5 min" .   - To get a phone call saying class is cancelled.. . - To see an old friend again and to feel that things have not changed.. .   - To touch the fingers of newly born child.. . - Walking alone on a silent road at night and thinking of some good old days memories.. . - Riding the cycle/bike on a highway while its raining.. .   - Sitting alone but you are still smiling cause you know someone is watching you.. . -The calm You feel inside when you Are near to Almighty God . - And the last one is "right now" while reading this message there was constant smile on your face..

Q. Write a program to find the given number is strong or not?

#include< stdio.h > #include< conio.h > void main () {     unsigned int n,x,l,m,fact,a=1,ans=0;     clrscr();     printf ("\n Enter Number: ");      scanf ("%d",&n);     x=n;     while (n> 9)     {         fact=1;         l=n%10;         n=(n-l)/10;         m=l;         do         {             fact=fact*m;             m--;         }         while (m!= 0);         ans=ans+fact;     }     do     {         a=a*n...

Q.Write a Program to perform array multiplication( C programming).

Image
Array Multiplication: Solution: #include < conio.h > #include < stdio.h > void main () {     int a[25][25],b[25][25],c[25][25],i,j,m,n,o,k;     clrscr();     printf ("\n Enter row & column in A: \n");         scanf("%d\n%d",&m,&n);     printf ("\n Enter the column value in B: \n");         scanf("%d",&o);     printf ("\ nEnter %d*%d value of A \n",m,n);     for (i=0; i< m; i++)         for (j=0; j< n; j++)             scanf("%d",&a[i][j]);     printf ("\n Enter %d*%d value of B \n",n,o);     for (i=0; i< n; i++)         for (j=0; j< o; j++)             scanf("%d",&b[i][j]);     printf ("\n A value...

Ten Steps to Improve Computer Speed( Tamil )

Image
கணினியின் வேகத்தை அதிகரிக்க 10 வழிகள்! ! ! ! 1. உங்கள் கணினியின் RAM எனப்படும் Random Access Memory ன் அளவை அதிகப்படுத்தவும் . ஒரு சாதாரண கணினிக்கு 1GB போதுமானது. அதன் நினைவகத்தின் அளவை அதிகரிக்க அதிகரிக்க வேகமும் அதிகரிக்கும். இப்போது RAM ன் விலை மிகவும் மலிவுதான். 2. கணினியில் ஏற்கனவே நிறுவியிருக்கக் கூடிய தேவையற்ற மென்பொருட்களை நீக்கிவிடுங்கள் . புதிதாகக் கணினி வாங்கியிருந்தால்  கூட அத்துடன் ஏராளமான தேவையற்ற மென்பொருட்களையும் நிறுவி இருப்பார்கள். அவற்றில் சில மென்பொருட்கள் மட்டுமே நமக்குப்பயன்படும். மீதி அனைத்தையும் நிராகரித்து நீக்கிவிடவும். பழைய கணினியிலும் தேவையற்ற மென்பொருட்கள் இருப்பின் அனைத்தையும் நீக்கிவிடவும். அவற்றிற்குரிய Copy இருந்தால் அதை மட்டும் CD / DVD ல் ஏற்றி burn செய்துகொள்ளவும். 3. FireFox, Chrome, IE என ஒன்றுக்கு மேற்பட்ட browsers ஐ நிறுவி இருந்தால் அவற்றில் ஏதேனும் ஒன்றை மட்டும் வைத்துக்கொண்டு மீதியை uninstall செய்துவிடவும். 4. G-Talk, Yahoo Messenger, Live Messenger என ஒன்றுக்கு மேற்பட்ட அரட்டை அடிக்கும் பயன்பாடுகளைத் த...