Posts tagged as:

C++

PHP has come a long way in the last few years and now its one of the most popular known web language but has any one of us thought why the Name of the language is PHP and nothing else Or what is the full form of PHP. If No read through the complete post [...]

{ Comments }

Functions in C++

by Shabbir on July 14, 2008

in C/C++

Functions are pieces of code, that can be executed by calling from another function. You know that a common C++ application, must have one function, that functions is int main().
So there is a statement of a function
return_type function_name(parameter1, parameter2,…)
{
// Statements
}

return_type, is the type that the function returns as a result (eg. int, float, string,…). It [...]

{ Comments }

Write To File in C#

by Shabbir on April 29, 2008

in C#

Today we will create a console application written in C# for writing to files.
We will use the StreamWriter class that is implemented in .Net Framework.
Create new C# project (Ctrl+Shift+N), and choose Console Application from the Templates menu on the right.
The editor will create the main code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace WriteToFile
{
class Program
[...]

{ Comments }

    About the Author

  • author photo

    My Name is Shabbir Bhimani and I am developer by profession in the field of applications, web and database. Currently doing full time online marketing and like to share my experiences on how you can make money online @ CodeItWell.com. Read more ...


    See how you can get in touch with me.