Answer Posted / r maria ruban raj
Static function directly call with out creating the object.
we can not override the function
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a memory leak? How to avoid it?
What are types of functions?
What is break in c?
What is atoi and atof in c?
How is = symbol different from == symbol in c programming?
What is string concatenation in c?
Does free set pointer to null?
What is structure in c definition?
What do you mean by recursion in c?
Difference between pass by reference and pass by value?
Explain what is output redirection?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Do pointers need to be initialized?
What does. int *x[](); means ?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?