City View

City viewscapes but this is default view

Thursday, November 22, 2012

Accessing C++ codes from C codes

C and C++ are close cousins but I have never tried mixing both codes in one project before. I encountered such a need to mix codes just recently due to work. It is quite difficult to scour the net for reference. And after long hours of experimentation I was able to access C++ codes in my C codes. Here are the steps: Normal 0 false false false EN-PH X-NONE X-NONE ...

Sunday, November 11, 2012

Hello World!

My first trash code... enjoy :) #include <conio.h> #include <stdio.h> int main() {     printf("Hello World!");     return 0; } ...