Why data types in all programming languages have some range?
Why ritche have disigned first time likethat?Why not a
single data type can support all other types?
Answer Posted / vignesh1998i
good morning ,
ya ur doubt is absolutely correct.... in the real time operation a human being can easily process and seperate the numbers and character s etc etc categories since we have got our own intelligence .... but when we come to computers they dont have... so we are the users , we make instructions to make it understand it.... if we make the computer to understand like us , there will be no difference between that and a human being... upto certain level only we can make computers to understand........ using intelligence we are differenciating things...... but in computers it will be very complex to it understand... like this we can keep on arguing with lots of points..........
thank u
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
about c language
What is the difference between array and linked list in c?
What are types of structure?
Can one function call another?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What is pragma in c?
How can you pass an array to a function by value?
How do you construct an increment statement or decrement statement in C?
difference between object file and executable file
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is a built-in function in C?
Can we replace the struct function in tree syntax with a union?
Explain 'bit masking'?
What is unary operator?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }