Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Blogging Blogs  >  C-Programming blogging Blog  > 

2016-08-14 07:31
Write a C program to read name and marks of n number of students from user and store them in a file#include int main(){   char name[50];   int marks,i,n;   prin… Read More
2016-08-14 07:27
In C programming, file is a place on disk where a group of related data is stored.Why files are needed?When the program is terminated, the entire data is lost in C programming. If you want t… Read More
2016-08-14 07:25
Unions are quite similar to the structures in C. Union is also a derived type as structure. Union can be defined in same manner as structures just the keyword used in defining union in union… Read More
2016-08-14 07:23
In C, structure can be passed to functions by two methods:Passing by value (passing actual value as argument)Passing by reference (passing address of an argument)Passing struc… Read More
2016-08-14 07:21
Structure is the collection of variables of different types under a single name for better handling. For example: You want to store the information about person about his/her name, citizensh… Read More
2016-08-14 06:59
In C programming, array of character are called strings. A string is terminated by null character /0. For example:"c string tutorial"Here, "c string tutorial" is a string. When, compiler enc… Read More
2016-08-14 06:50
Arrays are closely related to pointers in C programming but the important difference between them is that, a pointer variable can take different addresses as value whereas, in case of array… Read More
2016-08-14 06:47
Pointers are the powerful feature of C and (C++) programming, which differs it from other popular programming languages like: java and Visual Basic. Pointers are used in C program to access… Read More
2016-08-14 06:45
In C programming, a single array element or an entire array can be passed to a function. Also, both one-dimensional and multi-dimensional array can be passed to function as argument.Passing… Read More
2016-08-14 06:43
C programming language allows programmer to create arrays of arrays known as multidimensional arrays. For example: float a[2][6];Here, a is an array of two dimension, which is an exampl… Read More
2016-08-14 06:40
In C programming, one of the frequently arising problem is to handle similar types of data. For example: If the user want to store marks of 100 students. This can be done by creating 100 var… Read More
2016-08-14 06:38
A function that calls itself is known as recursive function. And, this technique is known as recursion.  void recurse(){    ... .. ...    recurse(); … Read More
2016-08-14 06:34
C allows programmer to define functions according to their need. These functions are known as user-defined functions. For example:Suppose, a program related to graphics needs to create a cir… Read More
2016-08-14 06:30
In this tutorial, you will be introduced to functions (both user-defined and standard library functions) in C programming. Also, you will learn why functions are used in programming. A funct… Read More
2016-08-14 06:26
In this tutorial, you will learn to put a switch statement in C programming with the help of an example. The nested if...else statement allows you to execute a block code among many alternat… Read More
2016-08-14 06:25
In this tutorial, you will learn how to create goto statement in C programming. Also, you will learn when to use a goto statement and when not to use it.The goto statement is used to alter t… Read More
2016-08-14 06:17
In this tutorial, you will learn how to use break and continue statements to alter the program flow in loops.It is sometimes desirable to skip some statements inside the loop or terminate th… Read More
2016-08-14 06:11
Loops are used in programming to repeat a specific block of code. After reading this tutorial, you will learn how to create a while and do...while loop in C programming. Loops are used in pr… Read More
2016-08-14 06:07
Loops are used in programming to repeat a specific block of code. After reading this tutorial, you will learn to create a for loop in C programming. Loops are used in programming to repeat a… Read More

Share the post

C-Programming

×

Subscribe to C-programming

Get updates delivered right to your inbox!

Thank you for your subscription

×