Wednesday, October 28, 2009

Viewer's Choice

Thanks for taking interest in this blog.
If you have any problem or any questions related to DOS / C / C++ / Networkg / Basic operating system troubleshooting, then you may share it with me.
If possible then I will definately try to clear your doubts.
Just post a comment here and I will try my best to give you satisfactory answers.
(Please put your email address too)

C & C++ Fundoo Programs

Calander Program in C
Click here to download

Clock Program in C++
Click here to download

A Simple Game in C
Click here to download

Puzzle Game in C
Click here to download

Snake Game in C++
Click here to download

Saturday, October 24, 2009

C++ - Binary Input/Output

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4

C++ - File Handling

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7

C++ - Inheritance

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7
Answer 7P
Answer 8
Answer 9

C++ - Constructors & Destructors

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5

C++ - Class

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7
Answer 8
Answer 9

C++ - Function Overloading

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3

C++ - Function Prototype

Questions
Click here to download

Click here to download
Answer 1A
Answer 1B
Answer 1C
Answer 2A
Answer 2B
Answer 2C
Answer 3A
Answer 3B
Answer 3C
Answer 4A
Answer 4B
Answer 4C
Answer 5A
Answer 5B
Answer 5C
Answer 6A
Answer 6B
Answer 6C
Answer 7A
Answer 7B
Answer 7C
Answer 8A
Answer 8B
Answer 8C
Answer 9
Answer 10

C++ - Goto(No use of loop)

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7
Answer 8
Answer 9
Answer 10
Answer 11
Answer 12

C++ - Fundamentals

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3

Friday, October 23, 2009

C - Link List

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5

C - Structure

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6

C - Functions

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7
Answer 8
Answer 9
Answer 10

C - Pointers

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7
Answer 8
Answer 9
Answer 10
Answer 11
Answer 12
Answer 13
Answer 14
Answer 15
Answer 16

C - Array

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7
Answer 8
Answer 9
Answer 10

C - Strings

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7
Answer 8
Answer 9
Answer 10
Answer 11
Answer 12
Answer 13
Answer 14A
Answer 14B
Answer 14C
Answer 15A
Answer 15B
Answer 15C

C - Loop Control

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5A
Answer 5B
Answer 5C
Answer 5D
Answer 6
Answer 7
Answer 8
Answer 9
Answer 10
Answer 11
Answer 12
Answer 13
Answer 14
Answer 15
Answer 16
Answer 17

C - Control Statement(if-else)

Questions
Click here to download

Click here to download
Answer 1
Answer 2
Answer 3
Answer 4
Answer 5
Answer 6
Answer 7
Answer 8
Answer 9

C - Fundamentals

Questions
Click here to download

Click here to download answers
Answer1
Answer2
Answer3
Answer4
Answer5
Answer6
Answer7
Answer8A
Answer8B
Answer9
Answer10

Friday, October 16, 2009

DOS Virus

Click here to download the file
Download It. But Be careful before opening It. It may harm your important files.

Warning : This blog is not responsible for any harm of data due to this file.
Run the file on your own risk

DOS CON Folder

Generally we can't create a folder named "con".
But with the help of dos we can create the "con" folder.
First of all go to the root directory like e:\ and then use the command
md \\.\\e:\con
And to delete this directory use the command
rd \\.\\e:\con

DOS Folder Locker

Click here to download the file

Ray How to work :- Download the file. The default password is "ray". Now double click the batch file to create a folder locker. A new folder named Locker would be formed at the same location. Now brings the files you want to hide in the locker folder. Now double click the batch file to lock the folder namely Locker. Double click the batch file to unlock it. Type the password and you will get your locker.

Note :- If u want to change the password then edit the file and look at the line

if NOT %pass%==ray goto FAIL

Just Change the word "ray" with your password and save it. Your password will change.

Wednesday, October 14, 2009

DOS Commands

Basic Commands
cls (To clear the screen)
date (To see the date)
time (To see the time)
vol (To see the volume)
ver (To see the version)
chkdsk (To check disk space)
exit (To come out)
cd.. (To remove the current directory)
copy con filename (To create a file. Insert the matter and then save using ctrl+z or F6)
type filename (To see the file)
del filename (To remove the file)
copy old_filename new_filename (To copy the old file into new file)
ren old_filename new_filename (To remove the old file into new file)
edit filename (To edit the file)
echo off (To remove dos prompt)
echo on (To get dos prompt)
copy first_filename+second_filename new_filename (To combine two files into a single file)
md directoryname (To make a directory)
cd directoryname (To change the directory)
rd directoryname (To remove the directory)
cd/ (To remove all directories at a time)
more filename (To see the file)


Commands to see directories
dir (To see the directory)
dir/p (To see the directory page wise)
dir/w (To see the directory in columns)
dir/w/p (To see the directory in columns page wise)
dir/s (To see all files of that drive)
dir/l (To see directories in small letters)
dir/l/p (to see directories in small letters and page wise)
dir/b (To see only filename)
dir/b/p (To see only filename page wise)
dir/on (To see directories in ascending order by name)
dir/o:-n (To see directories in descending order by name)
dir/oe (To see directories in ascending order by extension)
dir/o:-e (To see directories in descending order by extension)
dir/od (To see directories in ascending order by date)
dir/o:-d (To see the directories in descending order by date)
dir/os (To see the directories in ascending order by size)
dir/o:-s (To see the directories in descending order by size)


Wild Card Character
dir a* (To see all the files and directories starting with a)
dir *.a (To see all the files and directories in which a is present after .)
dir ???a??? (To see all the files and directories in which forth letter is a and of 7 letter)


Prompt Command
prompt name (To set the prompt as per the name)
prompt $d (To set the prompt as date)
prompt $t (To set the prompt as time)
prompt $p$g (To come back in the original prompt)


Attrib Command
atttrib +h filename (To hide the file)
attrib -h filename (To unhide the file)
dir/ah (To see the hidden file)
attrib +r filename (To make file read-only)
attrib -r filename (To remove the file's read-only)
attirb filename (To see the attributes of file)