The typedef is a reserved word (keyword) in the C programming language. It is used to create an additional name for another existing data type…. [Read More]
Format Specifier in C
Format specifier in C is a String, starting with ‘%’ symbol that specifies the type of data that is being printed using printf() or read… [Read More]
Comments in C with examples
In this guide, you will learn how to use comments in C programming language. We will discuss types of comments with examples in this tutorial…. [Read More]
C Identifiers
In this guide, you will learn about C identifiers. As the name suggests an identifier in C is a unique name that is used to… [Read More]
Data Types in C
Data type specifies which type of data can be stored in a variable. For example, an int variable store integer value, char variable store characters,… [Read More]
Features of C Programming Language
In this article, you will learn the features of C language. C is one of the widely used general purpose programming language. Features of C… [Read More]
History of C Language
C is a general purpose computer programming language. A general purpose language is a language that is widely used in various domains and not specific… [Read More]
Variables in C
A variable represents a memory location that stores the data. For example: an int variable num has a value 10 (int num = 10), here… [Read More]
Functions printf() and scanf() in C
The printf() and scanf() functions are the most commonly used functions in C Programming. These functions are widely used in majority of the C programs…. [Read More]
C strlen() Function – C tutorial
The function strlen() returns the length (number of characters) of the given string. Function strlen() Declaration size_t strlen(const char *str) str – This is the… [Read More]
- « Previous Page
- 1
- 2
- 3
- 4
- …
- 7
- Next Page »