answersLogoWhite

0

Well "text" is four characters, "binary" is six.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you convert text into binary in vb or c sharp code?

C# EXAMPLEString text="My sample data";System.Text.ASCIIEncoding encode=new System.Text.ASCIIEncoding();//convert to binary and store in a byte[]byte[] binaryArray=encode.GetBytes(text);


What are the different modes in C programming language?

In C programming language, there are three main modes: text mode, binary mode, and append mode. Text mode is used for reading and writing text files, binary mode is used for reading and writing binary files, and append mode is used for appending data to the end of a file.


What are file modes in c plus plus?

I guess you mean either input/output/inout/append or binary/text.


What are the different modes available in C programming language and how can they be utilized effectively in a program?

In C programming language, the different modes available are text mode and binary mode. Text mode is used for reading and writing text files, while binary mode is used for reading and writing binary files. These modes can be utilized effectively in a program by choosing the appropriate mode based on the type of file being accessed. Text mode is useful for handling human-readable text files, while binary mode is more suitable for non-text files like images or executable programs. By selecting the right mode, programmers can ensure that data is read and written correctly according to the file's format.


Write a program of binary heap in c or c language?

to implement operations on binary heap in c


Are C cup bras larger then a B cup bra?

Yes, C-cup bras are larger than B-cup bras. However, a C-cup in a small band size might be the same as a B-cup in a larger band size. The cup size is based on how much larger a measurement around your breasts is than the measurement around your rib cage.


What is bigger d-cup or c-cup?

D cup is larger than C cup bra size.


What pairs names two methods of sexual reproduction a meiois and binary dission b mitosis and meiosis c mitosis and binary fission?

mitosis and binary fission


What are A B C D in bra size?

The letters indicate the bra's cup size - how big the breast itself is. The number before it is the distance (in inches if you're American) around the girl measured right below the breast. A (or maybe even AA) is for small breasts, and the size of the breast gets progressively larger as the cup size letters progress from A to D. A is very small breast. B is larger than A, but is still a fairly small breast. C is larger than B. D is larger than C and is a larger, but not overly large, breast.


How do you install C in your system?

You don't "install" C, C is a language. You create your program in either an IDE(ex. Kdevelop, Dev C++, MS Visual Studio) or a simple text editor, compile it with a C compiler (ex. GNU's gcc), and then run the compiled binary file.


What is an explanation of the file modes briefly?

Two file modes are "text" and "binary". Text is used for human readable data, such as a C source file, or a notepad text file. Binary is used for computer readable data, such as an executable object file. Two other file modes are "sequential" and "random". Sequential is used when the file is accessed serially, from the beginning to the end, and can be used for both text and binary files. Random is used when the file is accessed non-serially, often jumping around from place to place. An example of random is a database file.


What is the difference between binary file and text file in java?

HI... When you access a file from within C or C++ you have a choice between treating the file as a binary file or as a text file. C uses the fopen(file,mode) statement to open a file and the mode identifies whether you are opening the file to read, write, or append and also whether the file is to be opened in binary or text mode. C++ opens a file by linking it to a stream so you don't specify whether the file is to be opened in binary or text mode on the open statement. Instead the method that you use to read and/or write to the file determines which mode you are using. If you use the operator to write to the file then the file will be accessed in text mode. If instead you use the put() and get() or read()and write() functions then the file will be accessed in binary mode. So what exactly is the difference between text and binary modes? Well the difference is that text files contain lines (or records) of text and each of these has an end-of-line marker automatically appended to the end of it whenever you indicate that you have reached the end of a line. There is an end of line at the end of the text written with the C fwrite() function or in C++ when you