answersLogoWhite

0

Which is larger in size text or binary in c?

Updated: 8/20/2019
User Avatar

Wiki User

12y ago

Best Answer

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

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which is larger in size text or binary in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 file modes in c plus plus?

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


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.


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

to implement operations on binary heap in c


What is bigger d-cup or c-cup?

D cup is larger than C cup bra size.


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


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 bra size is bigger c or d?

A D cup is larger than a C cup in the same band size. However, a 28D would be smaller than a 36C


What are the different types of files and how End Of File of a full represented by a pointer?

There are two file types in C++ namely, text file and binary file. In text file EOF or end of file is represented by an end of file character having ASCII 26. In binary files EOF or end of file is represented by NULL in the file pointer


What is key of hill cipher if we have plain text and cipher text?

Assume Plaintext = P, Ciphertext = C, and the Key = K. C = P * K Therefore, multiply both sides by the inverse of P and you will get: C * P^(-1) = K Or, (ciphertext) * (inverse plaintext) = key If the size of the key is known as well, then use that same size when creating P and C matrices.