answersLogoWhite

0

How many types of c language files are there?

Updated: 8/17/2019
User Avatar

Syedammarsadiq

Lvl 1
14y ago

Best Answer

ASCII and BINARY are the basic classifications of files

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many types of c language files are there?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the basic parts of the c language?

That would include header files, data types, loops, functions, pointers, arrays


Explain about header files used in c language?

list of header files in c and function prototype associated with each file


Reading and writing text files in c language?

Possible.


Need of preprosser in c language?

to include the header files.


What is the different types of language?

c, c++, java


What are programming language that produced c?

C is a programming language. Example of C or C++ Programing would be the following: add matrices, get ip address, and read files.


How can you read and write to files in C programming language?

We can read and write to files with the help of file commands in c programming.There are so many commands related to file for read,write,append,delete etc.


How many types of header files are present in c?

There are 15 types of header files in c language. 1.<assert.h> 2.<ctype.h> 3.<errno.h> 4.<float.h> 5.<limits.h> 6.<locale.h> 7.<math.h> 8.<setjump.h> 9.<signal.h> 10.<stdarg.h> 11.<stddef.h> 12.<stdio.h> 13.<stdlib.h> 14.<string.h> 15.<time.h> call.8855803440


No of header files are there in 'c' language?

It's 1405 in my Linux box.


Is it possible to read image files using c language?

Yes.


When you make a c program in c language then how many types class are required?

It depends on what you mean by 'types class'. Here is the shortest C program, without any 'types class': int main (void) { return 0; }


What is headderfile in c language?

Header File in C/C++ are the files which contains the definition of the pre-defined functions, data-types & constants, etc. By adding the header file you reduce your job of defining the same functions which are defined earlier by someone else & you can use those functions/data-types easily.