Click here to Skip to main content
15,881,871 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
four basic arithmetic type specifiers char, int, float and double, and the modifiers signed, unsigned, short, and long.

What I have tried:

I need more answer for this question
Posted
Updated 29-Apr-22 23:06pm
Comments
PIEBALDconsult 30-Apr-22 13:01pm    
It's all just a bunch-o-bytes. Then the turtles of course...
Derangula Mamatha 30-Nov-22 7:01am    
What are the basic type supported in
C programming language

Quote:
four basic arithmetic type specifiers char, int, float and double, and the modifiers signed, unsigned, short, and long.
That's your lot. C only supports a very basic range of types, but does include struct so you can create more complex types yourself, enum which is really an integer-with-knobs-on, plus arrays and pointers which aren't really data types.

It's an old language: it's had bool added by C99, but that's a fake in reality that is effectively implemented via #define.
 
Share this answer
 
You need to visit some Learn C tutorial to understand the language. C is a very plain language but it allows you to use structs for more complex data and use pointer arithemtic to manipulate it. It need a lot of skills and careful programming.

tip: write always tests with some real world data and check error codes
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900