Category: Language

07
Jun
2015

C++ Recap

I am recaping what I learned from tutorialspoint.com so far Identifier:I can define taht is c++ Keyword:Some…

07
Jun
2015

Function in C++

Syntax: function_type function_name(parameter_type parameter_name,parameter_type parameter_name){ function_body; return function_type; } return will work for any function_type except void….void…

16
Mar
2015

A leap year program in C

Enter a year to find out it’s leap year or not ! Explanation about the formula: http://www.infoplease.com/spot/leapyear1.html #include<stdio.h>…

19
Feb
2015

PHP MySQL based simple image uploading system

I tried to built this system from youtube videos and by searching net. I am sharing the…

17
Feb
2015

Some ICPC related programming techniques in c

Sometimes i feel i have to write those in somewhere so i am writing those techniques here…

14
Feb
2015

Some format specifiers in C

The % Format Specifiers The % specifiers that you can use in ANSI C are: Usual variable…