How can you determine the size of an allocated portion of memory?
No Answer is Posted For this Question
Be the First to Post Answer
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
What's a good way to check for "close enough" floating-point equality?
why we are using float in C
Which one would you prefer - a macro or a function?
What is a keyword?
Explain what will the preprocessor do for a program?
What is the meaning When we write "#include" what is # and what does include does there???
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
How can I convert integers to binary or hexadecimal?
Explain what does the format %10.2 mean when included in a printf statement?
How do you initialize pointer variables?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.