Skip to main content

Fundamentals of Programming

Fundamentals of C and C++:

Every Programming Languages have some basic rules that should be followed to become a good programmer. Some of them are as follows.

Rules for Declaring Variable Names:

  1. Variable name can be any combination of 1 to 31 alphabets, digits or underscore.
  2. The first character of variable name should be an alphabet.
  3. Commas, blanks or any other special symbols are not allowed in variable name.

 

C/C++ Keywords:

int    double    auto    char    if    else    long    switch    case    enum    register    typedef    struct    extern    return    union    const    float    short    unsigned    continue    for    signed    void    default    goto    sizeof    volatile    do    break    static    while  new

Integer Float Conversions:

There are some Rules that should be kept in mind before using mathematic operations on different data types. They are as follows.
  1.  An arithmetic operation between an integer and integer always result in integer.
  2.  An arithmetic operation between a float and float always result in float.
  3.  An arithmetic operation between an integer and float always result in float.

Priority:

In programming languages, every symbol has its own importance and precedence over one another. Some of them are as follows.
  1.  *  /  %
  2. +  –
  3. =

* have highest precedence and then /,%,+,-,= these shold be kept in mind before using them in athematic operations.

Comments

Popular posts from this blog

Data Types

DATA TYPES in C/C++: Since C and C++ are strongly type languages, therefore every thing must be defined. Variables are classified according to their data type, which determines the kind of information that may be stored in them. Data Types Description C-Keyword Format Specifier integer Integers are whole numbers that can have both positive and negative values but no decimal values.   int   %d or %i Float Floating type variables can hold real numbers precision of 6 digits. float %f Double can hold real numbers with the precision of 14 digits. double %f Character data type allows a variable to store only one character. char %c Implementation in C: #include<stdio.h> int main() { printf(“%d n”,18); //this will print integer printf(“%fn”,32.56); //this will print decimal number printf(“%d %d %dn”,32,56,89); // %d is a place holder for integer and it provide place for one integer printf(“%ld...

Stack Data Structure in Cpp (c++)

  What is Stack? Stack refers to an abstract data types (ADTs) that is a collection of elements, with two principal operations that are addition and removal of elements from the collection. It works on the principle of LIFO (last In first out). It is also considered as a linear data structure.   Example: A set of books. It easy to take an item off the top rather from the middle. Basic operations of Stack: Push: Add item to the list. Pop: Removes item from the list.   Advantages: Stack is faster than heap memory allocation (also known as Dynamic Memory Allocation). Stack memory is automatically reclaimed when the function exits, which can be convenient for the programmer if the data is no longer required. Therefore, it is suitable for temporary data, where memory is not needed after the execution of a function. Implementation Of Stack in C++: #include<iostream> using namespace std; class StackMemory...

Tic-Tac-Toe Implementation in Cpp (C++) Step by Step