C Program to Find Factorial using Recursion In this tutorial we have explained the C Program to find the factorial using recursion. C Program to calculate the Factorial of a non negative number using recursive approach is discussed here in this tutorial. Algorithm Step 1– Declare function fact() that take the number as parameter. Step […]
C Programming
Call By Reference Program in C
Call By Reference Program in C The difference between the Call by Value and the Call by Reference method is generally asked in the University Examination and also asked in technical interview. The difference between call by value and call by reference is that in the case of the call by value method, if we […]
C Program to Print Fibonacci Series
C Program to Print Fibonacci Series The Fibonacci series is the sequence of numbers in which every number is the sum of the preceding two numbers in the sequence. For example 0 1 1 2 3 5 8 13 21 C Program to Print the Fibonacci series is given below. #include <stdio.h> int main( ) […]
C Program to find Transpose of a Matrix
C Program to find Transpose of a Matrix Write a Program in C to find the Transpose of a Given Matrix . Matrix Transpose program in C is generally asked in University exam of C Programming subject. In this tutorial transpose of a matrix program is explained with output and program. Transpose of a matrix […]
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
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 […]
Passing Array to Function in C Language
Passing Array to Function in C Language In this tutorial we will learn how to pass array to function as an argument in C. In C programming there are some situations in which we have to pass the more than one than one variables of same types as an argument to function. For example we […]
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 […]
Train Information Program using Structure in C
Train Information Program using Structure in C Here in this tutorial we are going to implement a program in c for the following problem. Program for Following Define a structure data type TRAIN_INFO. The type contain Train No.: integer type Train name: string Departure Time: aggregate type TIME Arrival Time: aggregate type TIME Start station: […]
C Programming Conditional Statements Questions
C Programming Conditional Statements Questions Condition statements in C are used almost in every program written in the C programming language. This is a very important concept and a useful building block of programming construct. Conditional statements in C Programming are used when we have to execute a statement or set of statements on the basis […]
C Programming Questions for Practice
C Programming Questions for Practice These C Programming Questions for Practice are generally asked in Technical Interview and also in University exam of B.Tech , BCA, MCA etc. Today in this tutorial we have given some important C Programming Questions for Practice including programs. These questions have been asked in AKTU C Programming Exam in […]
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 […]
File Handling in C Language
File Handling in C Language File handling in c language plays a vital role in managing the data. Here the term managing the data means several tasks to be performed in data management. File handling in c language is used to update, create, read, and delete a file stored on the local file system on […]
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 […]
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 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 […]
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 […]
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 – [ 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( ) 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 […]