C Program for remove comments from source file of all Programming Languages

Linked list Program in CPP with all Functionality

#include<iostream.h> #include<fstream.h> #include<conio.h> #include<stdlib.h> class linklist { struct node { int data; node * next; }* p; int cn; public: ...
C Program for remove comments from source file of all Programming Languages

A classic Tank Game written in CPP language

#include<dos.h> #include<conio.h> #include<stdlib.h> #include<iostream.h> class tank { int x; int y; public: tank() { x = 5; ...
Facebook Page

Convert Your Facebook Profile into Facebook Page

Do you know that you can convert your Facebook profile into a Facebook page? Yes you can create a Page using your Facebook profile. Users can migrate their existing...
Visual Basic Script Programs

Some Visual Basic Script Programs

Here are some list of basic VB (Visual Basic) script programs. Which don't require knowledge of programming languages. Everyone can run these simple Visual Basic programs on their system.
C Program for remove comments from source file of all Programming Languages

C Program to remove comments from source code

A basic C Program to just remove all types comments from any source code file. Its written in c language and take file name as parameter when run it....