matrix multiplication program in c
C Programming

Matrix Multiplication Program in C

Matrix Multiplication Program in C Matrix Multiplication Program in C is an important program for the C Programming Subject. Matrix Multiplication in C Program is generally asked in AKTU Examination. In this tutorial we have explained the Matrix Multiplication in C Program with implementation and output. This matrix multiplication with example program will be definitely […]

Operators in C Programming
C Programming

Operators in C Programming

Operators in C Programming In this tutorial we will learn about Operators in C Programming. Various types of operators are explained with example. This tutorial will be useful for the students learning C Programming. Let’s start with introduction of Operators in C. Frequently Asked Questions Some frequently asked question from operators in C tutorial are […]

array of structure in c language
C Programming

Array of Structure in C Language

Array of Structure in C Language An array of structures in C Language can be seem as the collection of multiple structures variables where each variable contains information about different objects Array within structures in C are used to store information about multiple entities of different data types. The array of structures is also known […]

storage classes in c
C Programming

Storage Classes in C

Storage Classes in C Storage Classes in C are used to describe the scope ad lifetime of a variable and function in C Programming. Questions based on Storage classes are generally asked in GATE(CS)  and UGC NET Exam. Dear Students Today we will learn about the concepts of storage class in C and the related […]

loop in c programming
C Programming c programming notes for gate C programming Tutorials gate study material for cse

Looping Statements in C Programming

Looping Statements in C Programming Looping statements in C are used to repeat a block of code or statements until a condition is satisfied. In C Programming there are three types of Loops For Loop While Loop Do-while Loop This tutorial covers the concepts of looping statements in c with example. Advantages of using loops have […]

C Programming c programming notes for gate gate cse c programming questions gate questions on c programming gate study material for cse

Types of errors in c programming

Types of errors in c programming What are different types of errors in c ? Difference between syntax error and semantic error. How logical errors are different from run time errors?. Differentiate  compiler and interpreter. In this technical article  different types of errors in c programming are  explained. This article also covers the difference between syntax […]

c tutorial
C Programming C programming Tutorials

C Tutorial to Learn C Programming Language

C Tutorial to Learn C Programming Language C Tutorial to learn C Programming Language is discussed in this post. C Programming Language is one of the most powerful languages to develop system software like operating systems, compilers, etc. Application software can also be developed in C Programming language. Students from every branch of engineering learn c […]

C Programming c programming notes for gate C programming Tutorials gate study material for cse

Program in C to Implement Lagrange’s Interpolation Formula

  ‘C’ program to implement  Lagrange’s Interpolation formula.   Theory and Concept – Interpolation formulae for equally Spaced Argument is important but as is well known they possess the disadvantage of requiring the values of the independent variable to be equally spaced. It is therefore desirable to have interpolation formulae with unequally space values of […]

C Programming c programming notes for gate gate cse c programming questions gate questions on c programming gate study material for cse

What are Common Programming Errors ?

Most Common Programming Errors in C Hello Friends In this post, I am telling about some common programming errors that are mostly occurred at the time of writing a program in C Programming language. These errors are as follows: (1) Missing semicolon: Every C statement must end with a semicolon. A missing semicolon is confusion […]

difference between syntax and semantic errors
C Programming c programming notes for gate gate cse c programming questions

Difference Between Syntax and Semantic Errors – [ Interview ]

Syntax and Semantic in Programming Language This tutorial covers the basic introduction of syntax and semantic with example. Difference between syntax and semantic errors is also explained. Some basic definition types questions are generally asked in Technical Interview. Here in this post we have answer these questions are explained properly. Students are kindly requested to […]

Dynamic Memory Allocation in C using malloc(), calloc()
C Programming c programming notes for gate gate cse c programming questions gate questions on c programming gate study material for cse

Dynamic Memory Allocation in C using malloc( ) and calloc()

Dynamic Memory Allocation in C using malloc() and calloc() function In this Tutorial, we will learn about dynamic memory allocation in C using malloc(), calloc() function. Syntax and the use of different functions for dynamic memory allocation in c have been explained in this Tutorial. The use of malloc(), malloc() , realloc() and free() functions are explained in […]