Found 11 Articles for C Programming

C Keywords and Identifiers


In this tutorial you will learn about keywords and identifiers in C programming that are part of the syntax Also you will learn about identifiers and the proper way to name a variable Keywords and identifiers in C programming play an important role in Coding in c C Keywords and Identifiers C Programming Identifiers In C language identifiers are the names given to variables constants functions and user-defined data These identifiers are defined against a set of rules Exampleint marks char studentName Here marks and student names are identifiers Rules for writing an identifier An Identifier can only have alphanumeric Read More

C Programming Operators and Expressions


The sign that is used to complete logical amp mathematical operations in c programs is called an operator consider the expression A B inside are operators A B are variables and is constant and A B is an expression There are different types of operators in c which are below Types of operators in C Programming There are different types of operators in c language which are as follows Arithmetic operators Relational operators Logical operators Assignment operators Increment and Decrement operators Conditional operators Bitwise operators Special operators Arithmetic operators An arithmetic operator is a mathematical function that takes two operands Read More

Basic Structure of C Program


In this article you will learn about the basic structure of the C program A c program consists of a different function here we will define a necessary function that is needed in the basic structure of a c program All C programs are having sections parts which are mentioned below Sections of the C Program Documentation Preprocessor Section Definition Global Declaration Main Function Sub Programs Documentation section In the basic structure of the c program the documentation section consists of a set of comment lines giving the name of the program the author and other details which the programmer Read More

what is Array and types of arrary


An array is a data structure that contains a series of elements The array nbsp is nbsp used to store the collection of data but it is mostly more useful to think about an nbsp array as a collection of variables of the same type The elements are all of the related data types The Array is a nbsp collection of data items in the sequential form of all the same types accessed using a related name in the array one dimensional nbsp array is like a single link list and the two-dimensional array is like a table mean in Read More
Advertisements
Advertisements
Advertisements