answersLogoWhite

0

  1. Startup Repair process of Windows RE

This is somewhat useful, the file actually contains a list of repairs made by the Startup Repair process of Windows RE

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is a cs file?

It's a C# file. C Sharp File


You want C program on students information record using file handling?

yes sir


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


How can write a c program to store students record in a file?

Write a console based C++ program that reads student information from a text file, build an array of objects of type class StudentInfo,


What is dos.h?

A non-standard C header file that contained functions specific to accessing functions of MS-DOS. There is no need to use this header file, as there are standard libraries included in all major compilers that replace the functions in DOS.H.


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.


How do you create a header file and implementation of code in another c file and both should be retrieved by another .c file?

tanga


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).


Can C scripting be incorporated into an HTML file and if so how?

No. C Scripting can not be incorporated into an HTML file.


How do you abbreviate the word contained?

cont'd


How do you create .exe file in c plus plus?

You can create an exe-file from your C++ source, if you have a compiler.