Summary: Hi everyone. I find hard time converting numbers to binary,octal,hexadecimal. Here's what I have done. Kindly help me with this. #include<conio.h> ...
Summary: Converting to binary from decimal works like this: First convert the integer part (35 in the above case - 100011 Then convert the decimal part by mult...
Summary: converting binary to decimal numbers that is all I need i think i did 2 much ---------------- #include #include #include //convert the string to nu...
Summary: I need to convert a string to binary in C++. I will prompt the user for input of a string. For example if he enters "Hello". What i need to do convert...
Summary: I need to write a function in C++ to convert a decimal integer to an eight-bit two’s complement binary number. Use binNum[0] to store the most si...
Summary: hi im using this function to read the current position of a mechanical arm.I was told this is the way to convert array elements to binary number.Is th...
Summary: how to convert a string of characters in to binary in C programming? eg: user enter a string of 1-5 characters. and the programm should convert each c...
Summary: Batch file adding text to file also adds a return? (Damn 35 character subject limits ;)) Hi there. Working on a very simple batch file; all it does is...
Summary: ///Simple console application to convert decimal value to binary value ///When I try to debug, it doesn't run; can anybody help out. I'm using ///C# 2...
Summary: I don't do C, but the following forum question is almost the same as yours. The various methods are described below the large ad in the middle. http:...
Summary: You just can't add text to a jpg image. 1 - uncompress the image. 2 - to create the text image. 3 - Overlay text image over jpg image 4 - recompress t...
Summary: how do i write a function that converts uppercase to lowercase ? i know that there is already a function to do that in c but for some reason, it is no...
Summary: Did you mean MP3 (MPEG-1 audio layer 3)? I have never heard of an MP3 to MIDI converter, but there may be one out there. I know for sure that you can ...
Summary: #!/bin/ksh # add to text to end of a file using sed sed 's/$/Add Text to end"/g' myfile # using awk awk ' { print $0"Add Text to end" } ' myfile ...
Summary: Benny, It may be that you don't understand what is meant when some talk about hex. There is no 'conversion' per se. Not on a data level anyways. Th...
Summary: You guys are always the greatest last resort! Yes, it's a course assignment, but I am so close, that I just need some guidance. My program needs to c...
Summary: Hi ! I Im trying to add some text to a txt file like this: echo blablabla >>mu.txt But I dont want the text to be added in the beginning of the file. ...