1-10 of 28 Hubssort by Hot Best Latest

C Programming Lesson - Data Types in C Language86

C Programming Lesson - Data Types in C Language

A programming language is proposed to help programmer to process certain kinds of data and to provide useful output. The task of data processing is accomplished by executing series of commands called program. A program usually contains different types of data types (integer, float, character etc.) and need to store the values being used in the program. C language is rich of data types. A C programmer has to employ proper data type as per his requirement.

249 comments    how to internet software
C Programming Lesson - Function in C86

C Programming Lesson - Function in C

A function in C language is a block of code that performs a specific task. It has a name and it is reusable i.e. it can be executed from as many different parts in a C Program as required. It also optionally returns a value to the calling program So function in a C program has some properties discussed below.

277 comments    example c programming c language
C Programming Lesson - Dynamic Memory Allocation81

C Programming Lesson - Dynamic Memory Allocation

This tutorial is intended to tell beginner the power of pointers in C programming. This tutorial will try to explain how with the help of pointer we can solve the problem of memory management. If you don’t know what pointer is in C language then...

18 comments    c programming memory management
C Programming Lesson - Array of Structures in C Programming83

C Programming Lesson - Array of Structures in C Programming

Welcome back my readers; in this tutorial I am going to explain Arrays of Structures. This tutorial is advancement to my previous topic“Structure at Work”; if you missed the basic of structure then you can read it here. Let’s start...

11 comments    stock data programming
C Programming Lesson - Types of Function78

C Programming Lesson - Types of Function

In my previous c programming tutorial I tried to explain what the function, its advantages is and how to declare a C function. And I told you that there are five types of functions and they are: Functions with no arguments and no return values. Functions with arguments and no return values. Functions with arguments and return values. Functions that return multiple values. Functions with no arguments and return values.

138 comments    computer programming udf
C Programming Lesson - Arrays87

C Programming Lesson - Arrays

An array in C language is a collection of similar data-type, means an array can hold value of a particular data type for which it has been declared. Arrays can be created from any of the C data-types int, float, and char. So an integer array can only hold integer values and cannot hold values other than integer. This C tutorial will show you how to do array initialization and display value of array in C programming language.

73 comments    computer programming array
C Programming Lesson - Multidimensional array (3D Array)80

C Programming Lesson - Multidimensional array (3D Array)

C allows array of two or more dimensions and maximum numbers of dimension a C program can have is depend on the compiler we are using. Generally, an array having one dimension is called 1D array, array having two dimensions called 2D array and so on. So in C programming an array can have two or three or four or even ten or more dimensions. More dimensions in an array means more data it can hold and of course more difficulties to manage and understand these arrays. A multidimensional array has fo

22 comments    c programming array arrays
C Programming Lesson - Pointers78

C Programming Lesson - Pointers

C Programming, Free C Language Tutorials. In this tutorial I am going to discuss what pointer is and how to use them in our C program. Many C programming learner thinks that pointer is one of the difficult topic in C language but it’s not...

39 comments    memory programming operator
C Programming Lesson - File Copy Program in C84

C Programming Lesson - File Copy Program in C

Today we are going to learn a simple file copy program in C language. As I said this is a simple file copy program so you should not expect its output like DOS copy command has. Ok let’s start. The main logic behind this program is that we will open a file and copy its contents to new file character by character. So we are going to implement logic that we had used, especially as a student, in our school or college i.e. copying note from a friends’ notes.

21 comments    programming source code
History Of The C Programming Language80

History Of The C Programming Language

The C Programming Language - Brief History. C is a programming language which born at “AT & T’s Bell Laboratories” of USA in 1972. It was written by Dennis Ritchie. This language was created for a specific purpose: to design the UNIX operating system (which is used on many computers). From the beginning, C was intended to be useful--to allow busy programmers to get things done. Because C is such a powerful, dominant and supple language, its use quickly spread beyond Bell Labs.

121 comments    history language programming
Please wait working