Declaring String Or Character Array in C String data type is not supported in C Programming. String means Collection of Characters to form particular word. String is useful whenever we accept name of the person, Address of the person, some descriptive information. We cannot declare string using String Data Type, instead of we use array(…)
Introduction to Character Array [Strings] in C Programming
String in C is also called as Character Array , String is nothing but an array , so it is Possible to Access Individual Character
C Program to calculate Area of Circle using Pointer
Area of Circle can be computed using the pointer. We are passing the variables to function using pass by reference or address scheme and we are writing the result directly on the final memory location.
C program to Accessing Value from Address using Pointer
C Program will explain you how to Access Value and address of variable using Pointer
C Program to Access Address of Variable using Pointer
Access Address of Variable using Pointer
9 Rules for using Pointer to Perform Programatic Operation
9 Rules are listed in this article which will explain you , how to use pointer ?
Index : String Operations or Character Array in C
1.1 Introduction Strings or Character array 1.2 Declaration and Initialization Declaration Initialization 1.3 Accepting String Scanf() gets() getchar() 1.4 Displaying String Printf() puts() putchar() 1.5 Arithmetic Operations on Character Possible Operations with Character Atoi function 1.6 String Handling Functions strcat() strcmp() strcpy() strlen() strstr() 1.7 2-D array of String String Tables 1.8 String Functions sprintf(…)
Index : Array in C Programming
1.1 Introduction What is an array ? Limitations of Array Application of Array 1.2 Types of an array 1-D array Multi-Dimensional array 1.3 Declaration Array Declaration 1-D 1.3 2-D array Multi-Dimensional Initializing 2-D array Memory Representation of Multi-Demensional array Accessing array Elements 1.4 Array Broad-View Overview Passing Entire 1-D Array to Function Passing 1-D Array(…)
Index : Loop Control Statements in C
1.1 for Loop Syntax of For Loop Flowchart of for Loop Ways of Writing for Nested for Loop 1.2 While Loop Syntax : Explanation Ways of Infinite While Loop 1.3 do-while Loop Syntax : Explanation 1.4 Difference Between for-Loop and while-Loop do-while Loop and while-Loop for-Loop and do-while Loop 1.5 Unconditional Jump Statement continue break(…)
Index : C Programming : Question Bank (Check Your Skill)
C Programming : Challenging Questions [ Checking your C knowledge ] This Section Covers all Verities of Basic Syntax , Trick ,Tactics and Different Challenging Questions . If You have any Simple Solution or Explanation or any New Problem then feel free to contact : pripat2001@gmail.com “The greatest challenge to any thinker is stating the problem(…)