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 / nitin
Different data types and ranges require different amounts
of memory.
To optimize memory use and processing speed, practical
limits are set.
Ultimately everything has to be processed in binary, so
more complex characters require translation which takes
additional time, processing capacity, and memory.
Small differences when multiplied by billions of processes
have an impact.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does s c mean on snapchat?
Explain what is the general form of a c program?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Explain how can you check to see whether a symbol is defined?
Differentiate abs() function from fabs() function.
Explain what is output redirection?
What is an array? What the different types of arrays in c?
How can a program be made to print the name of a source file where an error occurs?
What is a union?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is dangling pointer in c?
Why are all header files not declared in every c program?
How do you sort filenames in a directory?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is anagram in c?