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...

Single LinkList in Java

Linked List: Linked List contains a sequence nodes which are linked together. Each node contains a connection to another link and data. Linked list is the second most-used data structure after array. Following are the important terms to understand the concept of Linked List. Link − Each link of a linked list can store a data called an element. Next − Each link of a linked list contains a link to the next link called Next. LinkedList − A Linked List contains the connection link to the first link called First. Types of Linked List: Following are the various types of linked list. Simple Linked List − Item navigation is forward only. Doubly Linked List − Items can be navigated forward and backward. Circular Linked List − Last item contains link of the first element as next and the first element has a link to the last element as previous. Basic Operations: Insert:  Inserts at tail,  specific index. Delete: Deletes from the tail.  specific index. ...

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