how the size of an integer is decided?
- is it based on processor or compiler or OS?
Answer Posted / guest
compiler
| Is This Answer Correct ? | 11 Yes | 5 No |
Post New Answer View All Answers
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Are negative numbers true in c?
What is a static variable in c?
Why we not create function inside function.
Explain what will the preprocessor do for a program?
How can I run c program?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What does typedef struct mean?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Where static variables are stored in c?
How can I recover the file name given an open stream?
What is array of pointers to string?
Can a void pointer point to a function?
What does stand for?
What are the different data types in C?