ProDeveloperTutorialonJanuary 24, 2025 C language Pre-Processor Directives 1. #define directive 2. Undefined a Macro 3. Token pasting and stringizing Operators 4. #include directive 5. Conditional Compilation 6.…
ProDeveloperTutorialonJanuary 24, 2025 C Language Storage Classes Storage classes are used to know the scope and lifetime of a variable. There are 2 types of storage classes. 1. Local 2. Global Below are…
ProDeveloperTutorialonJanuary 24, 2025 C language Input and Output C language Input and output can be classified into 2 types: 1. Formatted I/O a. printf () b. scanf() 2. Un-Formatted I/O a. getch() b. putch()…
ProDeveloperTutorialonJanuary 24, 2025 C language structure and Union 1. Structure Introduction 2. Declaration and initialization of structure 3. Size of a structure. 4. Bit fields 5. Structure padding 6.…
ProDeveloperTutorialonJanuary 24, 2025 C language arrays In this chapter we shall learn about another important and widely used topic arrays. Below are the topics discussed: 1. Introduction to arrays…
ProDeveloperTutorialonJanuary 24, 2025 C language Pointers In this chapter we shall study about following 1. Introduction 2. Usage of Pointers 3. Pointer Introduction: 4. Pointer declaration: 5. Void…
ProDeveloperTutorialonJanuary 24, 2025 C language Functions In this lesson we study about: 1. C function Declaration or function prototype. 2. C function Definition 3. Calling a function 4. Types of…
ProDeveloperTutorialonJanuary 24, 2025 C language Looping Controls In this chapter we are going to study about: 1. While loop. 2. Do … while loop. 3. For loop. 4. Break 5. Continue 6. Goto Looping statements…
ProDeveloperTutorialonJanuary 24, 2025 C language Decision Statements In this lesson we are going to study about: 1. If condition 2. If-else condition 3. If-else-if condition 4. Nested-if 5. Switch Statement…
ProDeveloperTutorialonJanuary 24, 2025 C language Operators and expressions In this lesson we are learning about below topics: 1. Arithmetic Operators. 2. Assignment Operators. 3. Relational Operators. 4. Logical…