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
How can I change their mode to binary?
What is integer constants?
Is main a keyword in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is the difference between mpi and openmp?
Explain the difference between ++u and u++?
What are header files and explain what are its uses in c programming?
What is the Purpose of 'extern' keyword in a function declaration?
while initialization of array why we use a[][2] why not a[2][]...?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What is the general form of a C program?
What is an identifier?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Why is C language being considered a middle level language?
What is conio h in c?