nheritanc C Language
4 mins read

Implementation of Inheritance in C++ – Syntax & Example Code

Implementation of Inheritance in C++ – Syntax & Example Code, Learn how to implement inheritance in C++ with a practical example. Understand single, multiple, multilevel, and hierarchical inheritance in C++ programming. Introduction to Inheritance in C++ Inheritance is one of the core principles of Object-Oriented Programming (OOP) in C++. It allows a class (derived class) […]

C Language
2 mins read

C program to swap two numbers using pointer

In this tutorial we will going to learn how to swap two numbers using pointer. If you want to learn more about pointer then you can go through my previous post Pointers in C Programming with Examples. My System Configuration : Fujitsu A555 with 12GB RAM, OS – Kubuntu 18.04, IDE used Geany (you can […]

C Language
3 mins read

Pointers in C Programming with Examples

What is a pointer? Explain pointer arithmetic with example. Also explain use of malloc function in C programming with an example. Pointer : A pointer is a variable that points to or references a memory location in which data is stored. Each memory cell in the computer has an address that can be used to […]

C Language
2 mins read

Token, Compiler and Interpreter C Tutorial

Token :  A C program consists of various tokens and a token is either a keyword, an identifier, a constant, a string literal, or a symbol. C language Supports Six Types of Tokens: Identifiers (Identifiers are names given to different names given to entities such as constants, variables, structures, functions etc.) Keywords (C has 32 […]

C Language
3 mins read

DOEACC NIELIT Programming and Problem Solving Through C Syllabus(M3-R4)

NIELIT (DOEACC )  conducts examination like O, A, B and C level but in in every level you have to clear C language Paper called Programming and Problem Solving Through C . In this post you I will Discuss regarding its Syllabus. The objectives of this paper(Programming and Problem Solving Through C) are to make […]

C Language
2 mins read

C program for Matrix Multiplication Tutorial

In this tutorial I am going to show you how to multiply Matrices using C language. We take input from keyboard for  two Matrices and multiply them to show the output. Environment –  Linux 64bit (Linux Mint 18.1) , IDE – Geany , Compiler – GCC Screen shot of Output : C program for Matrix […]

C Language
1 min read

C Program to print a Fibonacci Series

In this tutorial I am going to show you how printing a Fibonacci series using C  Language for a given input using scanf. First we have to learn about Fibonacci Series of a given number. According to Wikipedia “In mathematics, the Fibonacci numbers are the numbers in the following integer sequence, called the Fibonacci sequence, […]

C Language
1 min read

Checking Given Integer is Palindrome or Not

According to wikipedia.org  A Palindrome is a word, phrase, number, or other sequence of characters which reads the same backward or forward. Allowances may be made for adjustments to capital letters, punctuation, and word dividers. So I am going to to show how to check whether a given integer is  Palindrome or Not using C.Environment: […]