Showing posts with label Cpp. Show all posts
Showing posts with label Cpp. Show all posts

Thursday, July 03, 2014

Turbo C++ For WIndows 7 And 8

Turbo C++ is a C++ compiler and integrated development environment and computer language originally from Borland..Turbo C++ Doesn't Runs On Dos Based System. It Only Runs On Windows 93,95,98 & xp which run on Different Technology -NT..So To Make It Compatible With Windows 7 and 8 Some People Have Modded Turbo C++ To Work With Windows 7 and 8.



First Install Turbo C++ Then Download The Beta Update of Turbo C++:
Beta-4 Update

If you want all your drives/Partitions to mount automatically .Download and install the patch Drive_automounter..


Some Controls Of Turbo C++:

  1. To create a new file: File -> new.
  2. To open an existing source file: File -> open OR F3-> select your file -> Open
  3. To save your source file: File -> save / SaveAs OR F2-> give an name to your source file with .CPP extension -> OK. **Note your primary file name should not be longer than 8 characters
  4. To rename or change the location of save source file: File -> SaveAs->write new file location (if required) and new file name -> OK Example - "D:\SAMPLE.CPP"
  5. To print the program source code: File -> Print
  6. Undo the last operation: Edit -> Undo OR Alt + Bksp
  7. Redo the last operation: Edit -> Redo OR Shift + Alt + Bksp
  8. Copy: Edit -> Copy OR Ctrl + Ins
  9. Cut: Edit -> Cut OR Shift + Del
  10. Paste: Edit -> Paste OR Shift + Ins
  11. To find a specific word in your source (program): Search -> Find
  12. To search for a word and to replace with some other: Search -> Replace
  13. To Search again with previously mentioned word: Search -> Search again OR Ctrl + L
  14. Go to specific line number: Search -> Go to line number
  15. To run your program: Run -> Run OR Ctrl + F9
  16. Menu options helpful for tracing the flow of program control:
  17. Trace into: Run -> Trace into OR F7
  18. Trace over: Run -> Trace over OR F8
  19. To compile your program: Compile -> Compile OR Alt + F9


Features and Info About TurboC++ By NeuTroN:
  • During re-installation please un-install it properly back-up all the source code files from "C:\turboc++\disk\" folder and delete the folder  "C:\turboc++", reboot your computer and then you can proceed to re-installing it.
  • If mouse hangs after running a program you can re-enable it by selecting repaint desktop option from main menu. For that first press F10 use arrow keys to goto main menu(left of FILE menu) and select Repaint Desktop.
  • For the convenience of the users some example programs have been given.
  • Un-installing won't delete the source files you created, you can find them in "C:\TurboC++\Disk" folder.
  • For Graphics programming please use "C:\\Turboc3\\BGI" instead of "C:\\Tc\\BGI" as BGI path.
  • Problem regarding inserting special symbols please use the key-mapper to suite your needs, it can  be opened by pressing "Ctrl+alt+F1" and change the mapping according to your needs, please don't toggle it if you don't know what you are doing.
  • This Version Works For Both C and C++
  • This Version Works On Both Windows 7,8 64 Bit also ...So For Any Problems U can Contact the developer at striker.dbz@hotmail.com

Source- http://nvstech.weebly.com/

Monday, May 19, 2014

Learning C++


C++ Is a Programming Language Invented By Bjarne Stroustrup..It is A Compiler Language Means It needs Compiler to Run C++ Codes And Programs..It is also Object Oriented Programming(OOP) Language..But in Sem1 Bsc-it Students Doesn't Have OOP in C++.It is Included In Sem3..It is Almost Same to C Programming Language and It is Very Easy To Learn..Its Not Neccessary To Learn C Before Learning C++...

So To Start with C++ Program First Thing is Seting Up The Compiler So You can Run Codes












  • Microsoft Visual Studio 
  • Codeblocks
  • Turbo C++ 
  • Dev CPP



  • Getting Started With Programming In C++

    1. Start The Basic C++ Tutorial Course ...You can Learn C++ From Many Websites.Here are Some of Them
    Sites To Learn C++ Programming:
    •  http://en.cppreference.com/w/
    • www.Newboston.org
    •  www.cplusplus.com
    • http://www.cprogramming.com/tutorial/c++-tutorial.html
    • www.cplusplus.com
    • http://cppprogramz.blogspot.in/
    • http://www.fuzzyprograms.com/search/label/Cplusplus
    • http://www.thecrazyprogrammer.com/p/cpp-programs.html
    • http://fahad-cprogramming.blogspot.in/
    • http://ltcpp.blogspot.in/
    • http://www.learncpp.com/
    • http://www.tutorialspoint.com/cplusplus/index.htm
    • http://www.c4learn.com/cplusplus/cpp-first-program/
    Youtube Channels For C++ Programming
    2. Reading Reference Books , Practice Codes and Avoid Silly Mistakes In Codes
    Introduction To Programming
    How to Become a Good Programmer
    Some Reference Books / Pdfs For Studying

    3. Start Solving C++ Programming Questions And Quiz Yourself
    Some Sites For C++ Quizes and Questions

    4. Once You Are Completed With learning C++ , Start Making Projects, Games or Apps From C++ ..



    C++ Programs For Bsc-IT: 


    ALL Bsc-IT C++ Sem1 Programs -Here




    More Programs And Reference For Learning C++ Sites Will be Added ...
    If any Help On Any C++ Program for Sem1 u Can Contact us at -bscit.cracked999@gmail.com.

    Tuesday, May 06, 2014

    Introduction To C++

    C ++ Programming In Sem1 Includes Only Introduction to the Programming Language.It Includes Algorithms and Flowcharts as a base of Programming  AND Condition Statements,Loops,Data types,Pointers,arrays,Structures,Vectors,Strings in C++. It Doesn't Involves Object Oriented Programming in C++ ,Only The Basics.


    Reference Books:
    1. Problem Solving with C++ Walter Savitch.
    2. Introduction To C++ Programming Book For Bsc-IT By Vipul Prakashan.
    3. Let us C++ By Yashwant Kanetkar.
    4. Programming with C++ by Tata McGrawHill.

    Notes Download:
    Complete Notes -Here

    Practicals:
    Students Have to maintain A Journal Book For Writing these 14 Programs.


    1) Write a C++ program for finding greatest of three number.
    2) Write a C++ program for solving the quadratic equation.
    3) Write a C++ program to print all the prime numbers in a given range.
    4) Write a C++ program for displaying the Fibonacci series.
    5) Write a C++ program for converting number to words. (switch,break,continue)
    6) Write a C++ function for swapping two numbers without using third variable.
    8) Write a recursive function for factorial of given number.
    9) Write your own function for string reverse , string palindrome , string comparision
    10) Write a program for sorting the number in ascending and descending order

    11) Write a program for Matrix addition and multiplication.

    12) Write a program for implementing the concept of structures.

    13) Write a program for finding the greatest and smallest number using vector.
    14) Write a program for implementing the concept of call by value and call by reference.

    All The Programs With Their Solution are Posted Here - C++ Programs For Bsc-it


    For Help in Any of The Above Programs U can Contact us at - bscit.cracked999@gmail.com