Tagged Questions

14
votes
5answers
222 views

Is there a more efficient way of splitting a number into its digits?

I have to split a number into its digits in order to display it on an LCD. Right now I use the following method: pos = 7; do { LCD_Display(pos, val % 10); val /= 10; pos--; } while (pos ...
4
votes
7answers
976 views

Array Division - What is the best way to divide two numbers stored in an array?

I have two arrays (dividend, divisor): dividend[] = {1,2,0,9,8,7,5,6,6}; divisor[] = {9,8}; I need the result (dividend/divisor) as: quotient[] = {1,2,3,4,5,6,7}; I did this using array ...
3
votes
3answers
358 views

Given a double, need to find how many digits in total

I have a double which is not necessarily positive but usually. It can be 0.xxxx000 or X.xxxx00000 or XX.00000 or 0.xxx0xxx00000, where eventually there are all 0's to the right of the last number. I ...
3
votes
5answers
549 views

How can I safely and quickly extract digits from an int?

We currently have some code to extract digits from an int, but I need to convert this to a platform without snprintf, and I am afraid of a buffer overrun. I have started to write my own portable (and ...
3
votes
6answers
623 views

Inserting spaces between digits in C

How would I go about taking a number like 123456 and having it print as 1 2 3 4 5 6?
3
votes
4answers
2k views

Identify the digits in a given number.

i'm new to programming.. and i'm stuck at a problem.. I want my program to identify the separate digits in a given number, like if i input 4692, it should identify the digits and print 4 6 9 2. And ...
1
vote
1answer
125 views

How to implement 128-bit linear feedback shift register with byte element array in C

I have an array as follows, unsigned char A[16] I am using this array to represent a 128-bit hardware register. Now I want to implement a linear feedback shift register (LFSR, Fibonacci ...
1
vote
1answer
151 views

strange unwanted three digit code printouts from caesar cipher

hi all I'm having problems with my code. the cipher actually works its just I get some odd three digit codes separated with slashes any help would be greatly appreciated heres my code the codes look ...
0
votes
3answers
122 views

Split int into single digits. How to handle zeroes

I am trying to create a function that will take an int and separately return the leftmost digit and the rest of the number. int idigitizer(int *number) { int i = 1; int head = 0; int tmp = 0; tmp = ...
0
votes
7answers
1k views

Multiplying two number arrays

Can anyone please tell me how to multiply two number arrays in C? The number arrays are basically derived from two strings containing digits. eg: 123456 and 132465. Edit: I had two string as S1 = ...