Posts

படித்ததில் பிடித்தது-நாய்க்குட்டிகள் விற்பனைக்கு

‘ நாய்க் குட்டிகள் விற்பனைக்கு ’ என்று எழுதிய பலகையை தனது கடைக் கதவுக்கு மேல் மாட்டிக் கொண்டிருந்தார் அதன் உரிமையாளர். அந்தப் பலகை குழந்தைகளை ஈர்க்கும் என்று நினைத்தார் அவர். அதன்படியே ஒரு சிறுவன், கடையின் முன் வந்து நின்றான். "நாய்க்குட்டிகளை நீங்கள் என்ன விலைக்கு விற்கப் போகிறீர்கள்?" என்று கேட்டான். "முப்பது டாலரிலிருந்து ஐம்பது டாலர் வரை" - கடைக்காரர் பதில் சொன்னார். அந்தக் குட்டிப் பையன் தனது பேண்ட் பைக்குள் கைவிட்டுக் கொஞ்சம் சில்லறைகளை எடுத்தான். "எங்கிட்ட 2.37 டாலர் இருக்கு. நான் நாய்க்குட்டிகளைப் பார்க்கலாமா?" என்று கேட்டான். கடை உரிமையாளர் புன்னகைத்து, உள் பக்கம் திரும்பி விசிலடித்தார். நாய்க் கூண்டிலிருந்து ஒரு பெண் இறங்கி நடைபாதை வழியாக ஓடி வந்தாள். அவளுக்குப் பின்னால், முடியாலான பந்துகளைப் போல ஐந்து குட்டியூண்டு நாய்க்குட்டிகள் ஓடிவந்தன. ஒரு குட்டி மட்டும் மிகவும் பின்தங்கி மெதுவாக வந்தது. பின் தங்கி, நொண்டி நொண்டி வந்த அந்தக் குட்டியை உடனே கவனித்த சிறுவன், "என்னாச்சு அதுக்கு?" என்று கேட்டான். அந்தக் குட்டி ...

You think you are the best programmer out there? Well here are some challenges!

  Are you a C,C++ or C# programmer who is looking forward to get some coding adventure and test your skills in some coding contests?  Then this is for you. Annual contests: 1. International Conference on Functional Programming (ICFP)  This has been running for a decade and happens in June or July each year. Though it's based in Germany, anyone can enter using any programming language, from any location. It's free to enter and your team isn't limited by size.  2. The BME International : The BME International is an intense free to enter contest that takes place in Europe once a year for teams of three, and you have to bring your own computers and software. This year, the 7th edition took place in Budapest. This contest has had some interesting challenges in the past including driving a car over a virtual terrain? Other past tasks included controlling an oil-company, driving an assembly line robot and programming for secret communication. All p...

ஹைக்கூ(Hikoo) கவிதை- உனக்காக அங்கு நான்..

கவலைகள் உன்னை  நோகடிக்கும் பொழுது  உன் விழியோரம்  வழியும் நீர்த்துளி  துடைக்க  உனக்காக அங்கு நான்...!

ஹைக்கூ(Hikoo) கவிதை ~ நான்

உன் கண்ணீருக்கு  காரணம்  நானாயிருக்க கூடாது... உன் கண்ணில்  நீர் வருமென்றால்...  அன்று  நானேயிருக்க கூடாது...!

Quotes (Motivating Quotes)

Image
Make a first Step

Some Links to C Programming Quiz( Placement Guide)

Image
http://stevenkobes.com/ctest. html http://placementsindia. blogspot.in/2007/10/c- programming-puzzles-5.html http://www.cquestions.com/ 2010/08/c-quiz-questions-with- answers.html http://cprogrammingcodes. blogspot.in/p/ questionsanswers.html http://www.cquestions.com/ 2010/10/c-interview-questions- and-answers.html http://www.enjoycprogram.blogspot.in

C Aptitude Questions and Answers(Part-2)

Predict the output or error(s) for the following: 36.    main() { int i; printf("%d",scanf("%d",&i));  // value 10 is given as input here } Answer: 1 Explanation: Scanf returns number of items successfully read and not 1/0.  Here 10 is given as input which should have been scanned successfully. So number of items read is 1. 37.       #define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12));             } Answer: 100 38.      main() { int i=0;   for(;i++;printf("%d",i)) ; printf("%d",i); } Answer:             1 Explanation: before entering into the for loop the checking condition is "evaluated". Here it evaluates to 0 (false) and comes out of the loop, and i is incremented (note the semicolon after the for loop). 39.  ...