Skip to main content

C programming basic data types.

Today we talk about a vary impotent and topic in c programming , which name is basic data type so, what is data types ?

Ans:- C programming data types are defined as the data storage format that a variable can store a data to perfectly work for a specific operation. We use data types to define a variable before to use in a program.We can define size of variable, constant and array are determined by data types.Now see what is basic data types?


programming-1857236_960_720


BASIC DATA TYPES :-

Basic data type menace, which type of data type are created before , we don;t need to create . This type of data types are:

  • Integer type.
  • Float type.
  • Character type. 
data%2Btype


Comments

Popular posts from this blog

GCD and LCM easy calculation.

C Program to Find LCM of two Numbers Examples on different ways to calculate the LCM (Lowest Common Multiple) of two integers using loops and decision making statements. To understand this example, you should have the knowledge of following  C programming topics: C Programming Operators C if...else Statement C Programming while and do...while Loop The LCM of two integers  n1  and  n2  is the smallest positive integer that is perfectly divisible by both  n1  and  n2  (without a remainder). For example: the LCM of 72 and 120 is 360. Example #1: LCM using while Loop and if Statement #include <stdio.h> int main () { int n1 , n2 , minMultiple ; printf ( "Enter two positive integers: " ); scanf ( "%d %d" , & n1 , & n2 ); // maximum number between n1 and n2 is stored in minMultiple minMultiple = ( n1 > n2 ) ? n1 : n2 ; // Always true while ( 1 ) ...

Difference Between Waterfall and Agile Model.

Waterfall methodology is a software development methodology that is based on sequential-linear approach of software development. It reinforces the notion of "define before design" and "design before code". Whereas agile is based on increamental-iterative approach where requirements are expected to change frequently. # Waterfall Agile 1. Waterfall methodology is sequential and linear. Agile methodology is increamental and iterative. 2. Requirements have to be freezed at the beginning of SDLC. Requirements are expected to change and changes are incorporated at any point. 3. Working model of software is delivered at the later phases of SDLC. Working model is delivered during initial phases and successive iteration of the model are delivered to the client for feedback. 4. It is difficult to scale-up projects based on waterfall methodology. Scaling up of products is easy because of the iterative approach. 5. Customers or end user doesn't have a...