Skip to content
WebAlligator

WebAlligator

Knowledge Is Wealth

  • Blogs and Articles
  • About Us
  • Contact Us
  • Privacy Policy
  • Terms and Conditions

Category: Programming

Dynamic memory allocation in C programming language

September 22, 2020September 22, 2020krishiv

Dynamic memory allocation – Since C is a structured language, there are some fixed programming rules for it. One of them involves modifying an array ‘s scale. An array is a set of objects in continuous memory locations that are stored. How do you create an array using dynamic memory allocation? An array is a […]

Continue Reading

Pointers in c programming language with example

September 21, 2020September 21, 2020krishiv

Pointers in c are easy and fun to learn. some c programming tasks are done more efficiently with pointers, and other tasks can not be done without using pointers, such as dynamic memory allocation. To become a complete c programmer it becomes important to learn the pointers. In clear and easy steps, let ‘s begin […]

Continue Reading

Type Casting In C Programming Language

September 18, 2020September 18, 2020krishiv

Type casting refers to converting one data type variable into another. If it makes sense, the compiler will automatically change one kind of data into another. For example, if you assign an integer value to a variable with a floating-point, the compiler will convert the int to a float. Casting allows you to make an […]

Continue Reading

Goto Statement In C Programming Language

September 17, 2020September 18, 2020krishiv

goto statement – C supports a special type of a statement that is the Goto Statement that is used from one point to another to branch unconditionally within a program. While the use of the goto statement in C is not a good idea, there might be certain circumstances where it would be preferable to […]

Continue Reading

Input output functions in c language

September 11, 2020September 11, 2020krishiv

Input output functions – A function that displays the result on the screen is known as the output function where get input from the user is known as input function. What are the input output functions in the c programming language It divides into two parts such as the formatted and unformatted. Formatted input output […]

Continue Reading

Decision Making Statement in C Programming Language

September 11, 2020September 11, 2020krishiv

Decision making statement: a statement that changes the flow of the program is known as decision making statement. there are following types of decision making statement are there in C programming language. Types of Decision Making Statement simple if if else nested if else else if ladder switch case simple if: this is decision making […]

Continue Reading

Loops In C Programming Language

September 11, 2020September 11, 2020krishiv

Loops are statements that execute repeatedly until the condition is satisfied. if the condition is satisfied then and then the body of the loop will be executed if the condition is not satisfied then the control is transferred to the out of the loop. Parts of loop There are generally three parts of the looping […]

Continue Reading

Different types of operators in the C programming language

September 11, 2020September 11, 2020krishiv

Operators: The operator is a symbol that is used to perform a specific task. the operator tells the compiler to perform arithmetic or logical operation. The operator mainly divided into two categories the binary operator and the unary operator. Binary operator: An operator that required a minimum of two operands to perform a certain task […]

Continue Reading

What is C language data type

September 11, 2020September 11, 2020krishiv

C language data type refers to storage capacity, range, and types of information. Types of C language data type It divide into four category. Primary data type Derived data type Void data type User-defined data type primary data type: A data type which provide by the C library is known as a primary data type. […]

Continue Reading

What is Token in the C Programming Language

September 11, 2020September 11, 2020krishiv

The smallest individual unit of program is known as a token in the C programming language. The token is divided into six different parts Keyword Identifier String Constant Special character Operator Keyword: reserve words in C language are known as a keyword. Every keyword has fix meaning and this meaning can not be changed. All […]

Continue Reading

Posts navigation

Older posts

Recent Posts

  • Dynamic memory allocation in C programming language
  • Pointers in c programming language with example
  • Type Casting In C Programming Language
  • Goto Statement In C Programming Language
  • Input output functions in c language

Categories

  • Programming
© 2020 WebAlligator.ml. All Rights Reserved. | Theme: News Portal by Mystery Themes.