answersLogoWhite

0

What are the data type in c language?

Updated: 8/19/2019
User Avatar

Wiki User

13y ago

Best Answer

Some of them are:

1. char, short, int, long, float, double

2. pointers to these

3. arrays of these

4. arrays of pointers

5. pointers to arrays

...

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the data type in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is int in 'c' language?

data-type


What are different data type in c language?

there are three data type ic c language. they are, 1.primary data type: a.integer type b.floating point type c.character type d.void type 2.derived data type eg; array, pointer 3.userdefined data type eg; structer and union


What are the valid type of data that the main can return in c language?

Type 'int'


What is the Pascal programming language data structure?

In Pascal, data structures are implemented with recorddata types. A record is synonymous with the structdata type in C, or the class data type in C++.


What is premitive?

In C program, premitive is a kind of data type which is predefined in C programming language.


Where you are using -127 in character data type in c language?

Anywhere I need to.


How do you create a data type of c language in power point?

Presentations do not have data-types, you might have misunderstood somethings.


What do you think is the better type of language for writing complex data structures?

structured programming language ex:c,c++


What is the first no for sialkot?

Data structure is related to the algorithm, ie solution of the requirements.whereas Data Type is component of a programming language, which can be used to implement the required data structure (organization of data and format).For example if the requirement say that a LIST is required, and in C programming language , there is not LIST data type BUT LIST CAN BE REALISED(IMPLEMENTED ) in C.


Suggest the data type that can be used for initializing alphanumeric elements in a c programmed array .Also tell you the compiler that can understand the data type.?

Data Type : - It is used to identify the type of data. 'C' Language has a large no of data type, Thus it is also known by rich data type language: Data type are generally classified in three group: 1: Fundamental data type 2 Derived Data Type : 3 Use defined data type; 1 Fundamental data type: Fundamental data type includes i) The int data type: The data type int can store integer value only for eg. 14, 45, 78 declaration: int a,b; here we can store any value in variable a & b. ii) Char Data Type : The data type char can store character value only which is enclosed with single quote for e.g. 'c' declaration : char x = 'c' iii) Float Data Type:


Why percentage i is not used for integer data-type in c language?

C is statically typed. There is no need for dollar or percentage symbols to differentiate between character/string data and numeric data.


What is different between primitive date type and non primitive data type in c plus plus programming language?

A primitive data type is built into the language - int, char, long, etc. A non-primitive data type is am abstract data type that is built out of primitive data types - linked list, queue, stack, etc.