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
Do pointers need to be initialized?
Why flag is used in c?
Explain what is the difference between #include and #include 'file' ?
What is the use of ?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
What are pointers? What are stacks and queues?
What are local static variables?
Explain the Difference between the New and Malloc keyword.
what do structure language means?
What is c variable?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
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..