C-Basic

45 posts
Recent Articles

C Comments

Prerequisite – C Language Introduction C comments explain code and improve readability. These do not affect program execution. You can use comments in C to clarify code and describe algorithms. There are two ...read more

C Programming Language Standard

Prerequisite – C Language Introduction The C programming language has various versions: C89/C90, C99, C11, and C18. C89/C90: Released in 1989/1990. It introduced key language features. C99: This brought new features like ...read more

C Language Introduction

C is a programming language developed by Dennis Ritchie in 1972. It has a significant historical impact. It was originally created at Bell Laboratories of AT&T Labs for building the UNIX operating ...read more

String in C

In C programming language, a string is a sequence of characters that are stored in an array of characters. The string is terminated with a null character (‘\0’) which marks the end ...read more

C Literals

In the C programming language, a literal is a value that appears directly in the source code. There are several types of literals in C, including: Integer literals – An integer literal ...read more

C Basic Commands

C is a high-level programming language that was developed in the 1970s and is still widely used today. It is used to develop a wide range of applications, including system software, games, ...read more

Best C Compilers

Here are some of the best C compilers: GCC (GNU Compiler Collection): GCC is one of the most popular and widely used compilers for C and other programming languages. It is an ...read more