regarding the scope of the varibles;identify the incorrect
statement:
a.automatic variables are automatically initialised to 0
b.static variables are are automatically initialised to 0
c.the address of a register variable is not accessiable
d.static variables cannot be initialised with any expression
can we store values and addresses in the same array? explain
What is meant by realloc()?
how to write a bubble sort program without using temporary variable?
What does typeof return in c?
Explain the concept and use of type void.
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
What are static functions?
What are identifiers in c?
Can a local variable be volatile in c?
Why c language is called c?
Write a program using bitwise operators to invert even bits of a given number.
Is there anything like an ifdef for typedefs?