Void - is empty data type in C
Chat with our AI personalities
Empty datatype is the one which has no value. Like -void.
It can be used in functions and pointers.
Describe the basic data types in C Describe the basic data types in C
The data types indicate the type of values that can be stored. The primary data types in c are:1. int, short, long, long long - used for integer values2. float, double - used for storing floating point numbers3. char - used for storing ASCII characters
You seem to have lost your text book so I am giving you a link where you can study data types, including derived data types.
You have one or more errors in your program.
In c language data types are used to specify the tye of data.for ex:int a;It means "a" is a variable of type integer.There are two types of data types in c.They areprimary data typessecondary data typesprimary data types are the built in data types and secondary data types are the user defined data types.eg for primary data types are int,float,char,long,double..and for secondary are arrays,structures,pointers,unions..