Write a program for Overriding.
No Answer is Posted For this Question
Be the First to Post Answer
Why can't we initialise member variable of a strucutre
What is difference between Structure and Unions?
How do you determine a file’s attributes?
What are the disadvantages of c language?
What are the properties of union in c?
Is it possible to run a c program without using main?If yes HOW??
Explain what is the concatenation operator?
How can you draw circles in C?
What is the data segment that is followed by c?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Is c is a high level language?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }