Skip to main content

Posts

Showing posts from September, 2020

C Program : Introduction To C Programming Language

C Programming Language C programs consist of functions and variables. A function contains statements that specify the computing operations to be done and variables store values used during the computation. The #include<stdio.h> tells the compiler to include information about the standard input and output library. Stdio.h is a header file and it is included to every c program file at the top of that program. Features of C Language : - Structured Fast and Efficient Easy to Extend Portable Function Rich Libraries Modularity C is a robust language which has a rich set of built-in functions, operators which make it code highly efficient. It is also an extensible language because it continuously adds the library functions supported by the c library for various extra features. C is a highly portable language; it means that programs once were written can be executed on another machine with little or no change. C programs are efficient and fast because the use  a ...

Data Structure And Algorithm Important Topics Overview

  Overview Of Data Structures And Algorithms This post will give you the clear idea about learning data structures and algorithms . So, Data structure? => In computer science a data structure is a data organization , management and storage format that enables efficient access and modification. Or in the other words it is a way in which data is stored on a computer. Types of data structures:- Array  String Stack Queue Linked List  Binary Tree Binary Search Tree Heap Hash Table Graph Above topics, array is a linear data structure which stores the data in the sequence order, dynamic array, every data is stored in the next contiguous memory location.   String is a collection of characters. If it contains the alphabets and it also uses the digit as character. If a string is composed of numbers and characters then numbers are also treated as characters. Stack is also a linear data structure. It works either on Last In First Out or First In Last Out . It has only one ...

C++ Programming Language

Overview Of C++ Programming Language History Of C++ C++ is a statically composed, gathered, universally useful, case-touchy, free style programming language. that object oriented and nonexclusive programming language.  C++ is viewed as a center level language, as it contains a mix of both elevated level and low-level language highlights.  C++ was created by Bjarne beginning in 1979 at Ringer Labs in Murray Slope, New Jersey, as an improvement to the C  language and initially named C with Classes however later it was renamed C++ in 1983.  C++ is a superset of C, and that basically any lawful C program is a lawful C++ program.  Note − A programming language is said to utilize static composing when type checking is performed during total time instead of run time.                                   ...