My friend gave me a tip which is very useful. By using this tip, you will be able to completely hide your folder. Your folder will not be seen, even if the option of "Show Hidden Folders" is enabled. Also, your folder will not be detected by search option of Windows XP.
The trick is simple:-
Step1
Suppose you have a folder named "Max" and the folder is located in C: , the location of that folder would be C:\Max.
Step2
Go to Command prompt. Simply type "cmd" in run(of course without the quotes).
Step3
Type "attrib +s +h C:\Max" (of course without the quotes) and the folder becomes invisible. To make the folder visible again, simply type "attrib -s -h C:\Max".
My humble suggestion is to try this trick on an empty folder initially, in case something goes wrong. Caution- Do not forget the location of the folder, you have made invisible, I suggest that you save the location of the folders, you intend to make invisible. This trick is applicable, not only to folders, but files(all types of files) also.
This blog covers all aspects of technology. Cool gadgets, inventions, discoveries, technical tips, interesting facts etc. are to name a few.
Showing posts with label technology. Show all posts
Showing posts with label technology. Show all posts
Monday, April 21, 2008
Sunday, February 17, 2008
C++
C++ is a mid-level computer language. It is a multi paradigm, free form, compiled, statically typed computer language. It supports data abstraction, generic programming, object oriented programming, and procedural programming.
Did you understand the meaning of the underlined worlds? Honestly speaking, I did not! I further read and and came out with the following interpretation of the underlined worlds.
Did you understand the meaning of the underlined worlds? Honestly speaking, I did not! I further read and and came out with the following interpretation of the underlined worlds.
- Multi paradigm- C++ language supports both object oriented paradigm and procedural paradigm, hence it is multi paradigm.
- Free form- Initially the computer languages that were formulated , had the code to be written in specific columns. In C++, the code can be written in white space, hence it is free form.
- Compiled- C++ uses a compiler. A compiler, scans the entire code, line by line, and reports errors and warnings if any. A compiler is different from an interpreter. When an Interpreter is used , the errors(most of them) are reported immediately while the code is being written.
- Statically typed- The C++ compiler accepts letters, numbers, characters in a particular type. In statical typing, the typing is done during design time. In dynamic tying the typing is done during run time.
- Data abstraction- In C++ the object ca have many features.Only particular features of the object is written in the code. The particular features are written in the class of the object, and the class is known as data abstraction type.
- Generic Programming- C++ has generic programming features.
- Object Oriented Programming(OOP)- C++ uses objects, to develop applications. These objects interact with one another via various techniques namely Inheritance, Encapsulation, Polymorphism, Modularity.
- Procedural Programming- A procedure can be function, method, routine, sub-routine. In procedural programming, a procedure can be called from any other procedure, without writing the whole code again.
Labels:
C,
C++,
objects,
procedural,
programming language,
technology,
visual C++
Subscribe to:
Posts (Atom)