What is a floating point in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of 'auto' keyword in c programming?
Why main is used in c?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
Explain how do you print only part of a string?
What are Macros? What are its advantages and disadvantages?
where do we use structure pointer?
can we declare a variable in different scopes with different data types? answer in detail
Tell us something about keyword 'auto'.
What is an anonymous union and where to apply that ?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What are the different pointer models in c?
Why structure is used in c?