What is early binding and late binding
Answer Posted / ashish dwivedi
early binding---it happens at compile time. it will only
take care of programing part which is all ready defined by
the major classes that we have included..like
#include<stdio.h>
main()
(
printf("hello"); ///predefined function in STDIO.H it will
come under early binding. because STDIO.h has defined the
working of Printf(); Method of function
void abc(a,b),
it is user defined method or function...there is a no
definition of ABC(a,b) available in STDIO.H or any library
so this will come under late binding- at Run time
| Is This Answer Correct ? | 8 Yes | 10 No |
Post New Answer View All Answers
Helo , Help Me , Help Me About : C# Windows Application - Network How To Manage IP Client's Accessiblity To The Internet Share concise Substitute , Minor ISA Server
Please explain the basic string operations used in c#?
How can I make sure my c# classes will interoperate with other .net languages?
Why ref is used in c#?
What is a bool in c#?
How long does it take to learn c# programming?
What is parameter c#?
What does the keyword “virtual†declare for a method or property?
what class is underneath the sortedlist class?
What is lambda expression in c#?
What is collection class c#?
What is different between Boxing and Unboxing?
What is the use of regex in c#?
I wish to create a windows application to perform a similar function as that of the "Search" which is provided to look for related files and folders in the System.. What steps must i follow??
Can we assign null value to integer?