answersLogoWhite

0

What is primare datatype in c?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

primary datatypes means the data types which are provided by developer of language himself like int,float,double,char are the primary data types in c language

where as the String,array are nothing but the derived data types.

for Ex.we derived the String data type from char datatype using array system.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is primare datatype in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the best datatype for storing your birthday?

in Unix: the datatype is "Date" in C++: the datatype is "char"


What is the best datatype for storing birthdays?

in Unix: the datatype is "Date" in C++: the datatype is "char"


What is the datatype of 3 in c?

integer literal


Is their any scalar datatype in c language?

Float


Is there a datatype string in c plus plus?

Yes.


C program to implement tower of hanoi using array implementation of stack abstract datatype?

stack abstract datatype


How many bytes are there for a plus b plus c?

It completely depends the datatype that you have assigned for the variables 'a' , 'b' , and 'c'. Check the compiler that you are using for the size of the datatype in bytes. Add them and thus you will get the answer.


What is the datatype of FILE in C?

FILE is a data-type (a struct, to be precise).


What is meant by a Java Long Datatype?

The Java Long Datatype is a 64 bit data language, this format of Java is important to be skilled in for anyone that are to be doing C++ programing language.


How you declare a variable in c language?

you have to give a statement in the following syntax datatype variable;


Is there any datatype for date in C plus plus?

Look into time_t in the time.h library


What are functions in c?

These are a small set of instructions designed to operate on its given input and perform some actions or return some output. syntax : function_name ( datatype var, datatype var....);