answersLogoWhite

0

Explain the basic datatypes in C?

Updated: 8/10/2023
User Avatar

Wiki User

14y ago

Best Answer

C datatype can be categories into two part

1) Scalar data type 2) derived data type..

The scalar data type is also called basic data type

they are

int

char

float

double

long

signed or unsigned are key word which effectively change the storing power of these data type.

by default they are signed in nature..

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

The basic primitive data types in C are such as: Character, (char); Integer (short int, int, long int, long long int); Floating-point number (float, double); Boolean; and etc. Written by Simply. Hope this helps!

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

Built in data type is called as primitive data types like int, float, char,

union, structure are called user define data type.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

Primitive data type is used to represent single values. It is used to provide a built-in support and can also be provided as a building block.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

A non-primitive data type in C would basically be any form of structure which stores data.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Explain the basic datatypes in C?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Integer in c and c plus plus?

One of the built-in datatypes.


What is turbo c data types?

The usual C datatypes, nothing special.


What is composite data type in c?

Composite datatypes are the datatypes which can be constructed with in a program by using prmitive datatypes and other composite types.the act of constructing a composite data type is called composition..............


What are the abstract datatypes in c plus plus?

Class Object Message


Which purpose structure is using in c?

structure is a collection of variables of different datatypes.


Data type in data base?

In different languages we have different datatypes . Like in c++ we have int for integers , string for strings . In database we have datatypes, number for storing integer and varchar2 for storing string or characters.Like in languages like c we have datatypes such as char for characters , int for integers etc . In database we have datatype to denote the type of the field example numbers for storing integer, Varchar for characters.


What is a perdefined words in TURBO C?

there are many predefined words in c.. some are void,datatypes,printf,scanf etc


What is similarity among structure union and enum in c language?

all the three are user defined datatypes


What is the basic structure of a open ended response?

A-C-E standing for Answer, Cite, Explain.


Datatypes what r types of datatypes?

short int int long int double float char these are all datatypes


What are different types of primitive datatypes used in c language and their range?

Perhaps the link in the related links box will help you.


How does structure differ from an array?

structure is a collection of dissimilar datatypes whereas array is collection of similar datatypes.....