CodingElite

What is C programming?

About C, 31 jan, 2021
Introduction and history of c

C programming is considered as the base for other programming languages, thats why it is known as "mother language".C is a middle-level procedure oriented programming language, used in ... Continue Reading

Difference between C and C++

01 Feb, 2021

1 C is a structural or procedural programming language and does not support classes and objects.C++ is a combination of both procedural and object-oriented programming languages. 2 C is middle level programing language.C++ is high level programing language.....Continue Reading

Advantages and disadvantages of array.

Array, 02 Feb, 2021

1 Array represent multiple data elements of the same type using a single name.Different data type could not be stored in an array. 2 In arrays, the elements can be accessed randomly by using the index number.It has a single fixed size. 3 Array consist of .......Continue Reading

Application of C programming

Various Real World Application of C.
03 Feb, 2021

Operating system.- The first operating system to be developed using a high-level programming language was UNIX, which was designed in the C programming language.. ......Continue Reading

Which compilers used for C programing?

Compiler for C, 04 Feb, 2021

C compiler- A compiler for programs written in C. compiling program, compiler - (computer science) a program that decodes instructions written in a higher order language and produces an assembly language program........Continue Reading

Top 2 Best Compilers for C language.

Mobile Compiler,05 Feb, 2021

C4Droid-C4droid stands for "c for android" (or "c++ for android"). C4droid is not an online compiler, so it uses real binaries. this is the one most useful compiler and best compiler for the c language.It is not a online compiler. This compiler is available on play store. 2.Mobile C-Mobile C ......Continue Reading

Difference between 1-D array and 2-D array.

Array in C, 06 Feb, 2021

1. A type of array that stores a collection of similar data type in a contiguous block of memory.A type of array that stores multiple data elements of the same type in table or matrix format. 2. Also called as single dimentional array.Also called as multi dimentional array.........Continue Reading

What is mean by character array?.

string in C, 07 Feb, 2021

In C programming, character array means array of data type char. It is called as "string". A string is a sequence of characters terminated with a null character. Strings are one-dimensional array of type characters terminated by a null character '\0'. This null character indicates the end of the string. Strings are always enclosed by double quotes. Whereas,......Continue Reading

Types of pointer.

Pointer in C, 08 Feb, 2021

Pointers are used to access the variables directly by using their address Locations. The value has been assigned to the variable gets stored in that particular memory location.There are Eight different types of pointers, they are : 1.Null pointer-A pointer that is assigned NULL is called a "null pointer".The value of null pointer is .........Continue Reading

File handling in C.

File handling in C, 09 Feb, 2021

File Handling is the is the storing of data in a file using a program. In file handling, some function are used to handle the file.Functions of File Handling: 1.fopen()- It is used to opens new or already created file. 2.fclose()- It is used to closes the file. 3.fprintf()- It is used to write data into the file. 4.fputc()- It is uesd to writes a character into the file.......Continue Reading

Advantages and Disadvantages of C programming.

C language, 08 Feb, 2021

1.Powerful and efficient language.Concept of OOPs. 2.Portable language. Run-time checking. 3.Built-in function.Concept of namespace..........Continue Reading