Code Challenge - Self Replicating Code

Quine A program that outputs its own source code, preferably without reading a file, is called a Quine. One of the simplest example is as follows #include<stdio.h> main(){char*a="#include<stdio.h>%cmain(){char*a=%c%s%c;printf(a,10,34,a,34);}";printf(a,10,34,a,34);} This is the base I used for this challenge. The constraint Just like for the math expression... »

Code Golf - Math expression evaluator

Code Golf Code Gold are challenge where you have to write code in the least amount of character possible. I was on the IRC server of SFML (irc.boxbox.org), on the C++ channel (#c++) and someone was asking how to implement a Math Expression Evaluator. Basically... »