Search This Blog

Simplicity is the ultimate sophistication.” — Leonardo da Vinci
Contact me: sreramk360@gmail.com

Friday 3 April 2015

program to evaluate infix expressions



Program to evaluate infix expressions
 

/*
* Program to convert an infix arithmetic expression to
* postfix and to thereby evaluate the result.
*/

Thursday 2 April 2015

Example program for queue



Example program for queue


Program:

/*
* This program is written to obtain the job application form and to later verify the forms
* using queue implementation.
*/

Wednesday 1 April 2015

CS6212 lab manual programs


- By

Uploaded on:

CS6212 lab manual programs (complete solutions - C programs).

The following programs are written for the subject CS6212 (only the first ten out of twelve are given here). These programs or based on BE- CSE semester 2 lab syllabus. I am a student doing my second semester BE CSE currently while writing down these record programs. So please excuse me for any mistakes that might have crept in the programs (but I have made sure that the following programs are error free and warning free and also works as expected).  

Monday 30 March 2015

Example program that imitiates function stack




An example program that imitates function stack

Program:

/*
 an example program that imitates the "function stack" concept.
 This program is already available as the second program in these record
 program series, but here recession is imitated with a fake function stack!

*/

Featured post

Why increasing complexity is not good?

“ Simplicity is the ultimate sophistication.” — Leonardo da Vinci Why is complicating things wrong ? - K Sr...