Skip to main content

Posts

Motivational Quotes for Study....

→ Success is no accident. It is hard work, perseverance, learning, studying, sacrifice and most of all, love of what you are doing or learning to do. ( Pele) → There are two kinds of people in this world: those who want to get things done and those who don’t want to make mistakes.            –  ( John Maxwell) Success is the sum of small efforts, repeated day in and day out. –  ( Robert Collier) . Successful and unsuccessful people do not vary greatly in their abilities. They vary in their desires to reach their potential.              – ( John Maxwell) motivational quotes to study hard motivational quotes for students studying pdf study quotes for exams motivational quotes for students success inspirational quotes for exam success inspirational quotes for students in college study motivation quotes wal...

Data Types in C++

Basic Data types:  The basic data types are integer-based and floating-point based. C++ language supports both signed and unsigned literals. The memory size of basic data types may change according to  32 or 64 bit operating system.   Let's see the basic data types. It size is given according to 32 bit OS. Data  Types Memory Size Range char 1 byte -128 to 127 signed char 1 byte -128 to 127 unsigned char 1 byte 0 to 127 short 2 byte -32,768 to 32,767 signed short 2 byte -32,768 to 32,767 unsigned short 2 byte 0 to 32,767 int 2 byte -32,768 to 32,767 signed int 2 byte -32,768 to 32,767 unsigned int 2 byte 0 to 32,767 short int 2 byte -32,768 to 32,767 signed short int 2 byte -32,768 to 32,767 unsigned short int 2 byte 0 to 32,767 long int 4 byte signed long int 4 byte unsigned long int 4 byte float 4 byte double 8 byte long double 10 byte Derived Data Types:  The data-types that are derived from the primitive or built-in datat...

C++ DataTypes(डाटा टाइप्स को जाने )

C++ Data Types Searches related to C++ Data Types,explain c++ data types,c++ data types range,data types in c++ pdf,data types in c++ ppt,user defined data types in c++,string data type in c++ A data type specifies the type of data that a variable can store such as integer, floating, character etc. There are 4 types of data types in C++ language. Basic Data Types Derived Data Type Enumeration Data Types User Defined Data Types Types Data Types Basic Data Type int, char, float, double, etc Derived Data Type array, pointer, etc Enumeration Data Type enum User Defined Data Type structure

C++ Variable( आओ जाने वेरिएबल्स के बारे में)

हेलो Students... (अगर आप Program  को रन कैसे करते है तो  इस Link पर click करे ) learn c++ programming in 21 days for beginners,learn c++ codecademy,,c++ tutorial for beginners,c++ programming examples,learn c++ the hard way,learn c++ reddi,tbest way to learn c++,c++ online course free. आज मैं आपको कुछ C++ के variables  के बारे में बताने जा रहा हूँ सबसे पहले हमारे दिमाग में ये सवाल आता है कि वेरिएबल्स क्या होते और इनका programming  क्या use होता है |  C++ Variable A variable is a name of memory location (ये एक मेमोरी लोकेशन है ) . It is used to store data (ये डाटा को स्टोर करने के लिये इस्तेमाल होता है ) . Its value can be changed and it can be reused many times. (ये वेरिएबल्स को एक बार store करने पर आप इसे बार बार use कर सकते है ) It is a way to represent memory location through symbol so that it can be easily identified. Let's see the syntax to declare a variable: type variable_list;(टाइप वेरिएबल लिस्ट )     ये एक स...

If You Want to Run the program with Menu and Shortcut

#include <conio.h>  includes the  console input output  library functions. The getch() function is defined in conio.h file. # ये हैश सिंबल है जो प्रोग्राम का स्टार्टअप होता है इसको preprocessor directives कहते है ये बहुत ही इम्पोर्टेन्ट टर्म होता है आपको इसके बारे में जरूर पता होना चाहिये |  void main()  The  main() function is the entry point of every program  in C++ language. The void keyword specifies that it returns no value. cout << "Welcome to C++ Programming."  is  used to print the data "Welcome to C++ Programming."  on the console. getch()  The getch() function  asks for a single character . Until you press any key, it blocks the screen. How to compile and run the C++ program There are 2 ways to compile and run the C++ program, by menu and by shortcut. By menu Now  click on the compile menu then compile sub menu  to compile the c++ program. Then  cli...

C++ Program ( Try it)

C++ Program C++ इनस्टॉल करने के बाद मई आपको एक example से समझाना चहता हु तो आप इसके देखे और सीखे |...  Before starting the abcd of C++ language, you need to learn how to write, compile and run the first C++ program. To write the first C++ program, open the C++ console and write the following code: #include <iostream.h>    #include<conio.h>    void  main()  {      clrscr();      cout <<  "Welcome to Onkareshwar Saraswati Vidya Niketan  Inter College" ;       getch();   }   #include<iostream.h>  includes the  standard input output(स्टैण्डर्ड इनपुट आउटपुट )  library functions.  It provides  cin  and  cout  methods for reading from input and writing to output respectively.

Wish You a Very Happy New Year 2020

Hello Students आप सभी students को नव वर्ष की हार्दिक शुभ कामनाये सभी स्टूडेंट्स का ये वर्ष मंगलमय हो ये मै कामना करता हु |