answersLogoWhite

0

C sources and object-libraries don't actually do anything, so there is no point in comparing their performance. (In other words: your question makes no sense.)

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

You have developed a rabbit ftp server program in dynamic c whenever you tried to dowload a file from server program you are getting the error as input string is not in the correct format?

it may b the error in lib files


Does c and c plus plus support static or dynamic binding?

Yes and no. Static vs dynamic binding is not a C or C++ language issue; it is a linker issue. If you link with a .lib file that contains stubs for run-time loading, then the called routine will not be loaded until it is invoked, and it will not be made a part of the load module.


What is a cs file?

It's a C# file. C Sharp File


What is mean by file in c?

A file in C means a file found in your computer's C Drive. Start > My Computer > C Drive


Who calls main method in C?

The run-time environment calls the main function to begin program execution.On Linux operating system, C runtime file can be found in either /usr/lib directory or /lib directory.crt0 (or crt0.o, gcrt0.o, mcrt0.o) is a set of execution startup routines that are platform-dependent, and is required in order to compile using the GCC and other GNU tools.crt stands for 'C runtime'.So,Ultimately the main() is called by startup routines in the crt0


Is a header file a collection of built in functions that help in writing c programs?

No. There are no built-in functions in C, there are only built-in types and built-in operators for those types. All functions are user-defined, including those defined by the C standard library. There are no user-defined operators in C, but you can implement operators as named functions if required. A header file (*.h file) typically contains a group of related user-defined function and/or user-defined type declarations which can be included in any source file that requires them. Every user-defined function or user-defined type name used by a program must have one (and only one) definition, usually contained in a corresponding source file (*.c file) or library file (*.lib file). Built-in types and their corresponding operators do not require a header file since they are part of the language itself (hence they are built-in).


The windows paging file must reside in drive c?

False.As server performance is better if the paging file is not placed on the boot partition or volume that contains system files \ Windows foleder


How do you rectify linking error which says unable to open include file?

you just need to set path for the include and lib folder, which is ..\tc\include for ex c:\tc\include.. to do so choose directories in the options menu and write the path there.


How is a library file incorporated in a C program?

Every library requires a header file (.h file) that can be included in any translation unit that requires access to the library. The header describes the library interface. The library implementation may be provided by a corresponding .c source file in which case you can compile the library into your program just as you would any other translation unit. However, most library implementations are provided by a precompiled library file (.lib file) and you generally won't have access to the source file. The precompiled library file is required by the linker while the corresponding header is required by the compiler.


What is unable to open 'COS.OBJ' in the c program?

Go TO Option > Directories First One Should Be "C:\TC\INCLUDE" Second One Should Be "C:\TC\LIB"


What is a 'D' file as opposed to a 'C' file?

There is no such thing as a standard "D" or "C" file. Please restate the question.


How many file types are avilable in C?

You can open any file with C, since it does not distinguish between file types. It's the way you read from the file.