Answer Posted / harshithadesai
static function cant be overriden.example for ststic
function is main()
without creating object we can access these method
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Can we replace the struct function in tree syntax with a union?
How do you list a file’s date and time?
What is table lookup in c?
What are qualifiers and modifiers c?
Why we write conio h in c?
Is array name a pointer?
Explain how can I avoid the abort, retry, fail messages?
What is static memory allocation?
Which function in C can be used to append a string to another string?
Where in memory are my variables stored?
What are structures and unions? State differencves between them.
What is the purpose of 'register' keyword?
Why #include is used in c language?
Difference between macros and inline functions? Can a function be forced as inline?