SOURCE CODE#include "iostream"using namespace std;int sum(int,int);float sum(double,double);int main() { sum(4,4); sum(4.0,4.0); return 0; }int sum(int a,int b) { cout<<"\n int Sum() is "<<(a+b)<<endl; return 0; } float sum(double a, double b) { cout<<"\n float Sum is "<<(a+b)<<endl; return 0; ...
Monday, April 29, 2013
Sunday, April 14, 2013
Wednesday, April 10, 2013
undefined
undefined
First tell me what is header file ?A header file is the file which contain different function for different reason.So I am creating a file which contain the personal info of my blog,using that header file I need not to create a all details every time, When I needed at any time, I can add that header file in header section and call that function which is defined inside that header files.Open Text editor...
Saturday, April 6, 2013
undefined
undefined

Success – Let’s define it !Success means different things to different people.Success is a progressive experience of achieving a worthy Goal thus, it’s a journey not a destination.There are 10 steps to success. During any setback, check out , are you missing or wrongdoing necessary steps to success.Step...