Showing posts with label C Programming. Show all posts
Showing posts with label C Programming. Show all posts

Tuesday, 6 February 2024

DataTypes

DataTypes

 Each variable in C has an associated data type. It specifies the type of data that the variable can store like integer, character, floating, double, etc. Each data type requires different amounts of memory and has some specific operations which can be performed over it. The data type is a collection ...

Read More

Thursday, 1 February 2024

Introduction of Programming Languages

Introduction of Programming Languages

Introduction of Programming LanguagesPoints to be covered in this are as follows:1.1 Types of Languages1.2 Evolution of 'C' Language1.3 Structure of a 'C' Program1.4 'C' Program Development life cycle1.5 Executing & Debugging a 'C' Program.What is Computer?A computer is an electronic device that ...

Read More

Tuesday, 26 September 2023

Pointer to Function Concept in detail with example

Pointer to Function Concept in detail with example

 Pointer to Function:Like built in variables function also contains address.How to declare function pointer?return type (*fp)( );  // in this way you have to declare function pointer to hold ...

Read More