Tagged Questions
0
votes
3answers
50 views
read signed int from a bin file in C gives me wrong results
I want to read data from a .bin file. Actually If I preview the data of my bin file I see something like this:
0000000 3030 3030 3030 3730 300a 3030 3030 3030
0000010 0a35 ...
1
vote
1answer
62 views
Merge Sort on an array of floating point numbers of fixed size 25 (C programming language)
My code is as follows:
void mergeSort(float a[], int first, int last) {
//Function performs a mergeSort on an array for indices first to last
int mid;
//if more than 1 element in ...
1
vote
1answer
108 views
Reading an array with floating point numbers (C programming language)
I am creating a function to read in inputs from the user and put them into a floating point array of numbers with predetermined fix size of 25. It also returns the total amount of items that the user ...
1
vote
2answers
66 views
n number of 1s using binary operations
Is there any way to get n number of 1s using only these binary operations ( !, ~, &, ^, |, +, <<, >> ) where n is an input?
Example,
n ---> output
0 ---> 0000
1 ---> 0001
2 ...
0
votes
3answers
60 views
Creating a number of integers by user request
I recently started learning C and wanted to know if there was a way to declare some integers, with the value given by the user.
For example, the user types in 3. I would like to create 3 integers, ...
1
vote
2answers
104 views
C Programming 'Craps' Game [closed]
I'm doing a learning task for my C programming course, I've been asked to do the following:
Task 2. Craps.
In the game of Craps, a "Pass Line" bet proceeds as follows. Using two six-sided ...
0
votes
2answers
87 views
Generating random integer values within a range in C [duplicate]
How do I go about generating random integer values between a range (in this case 1-12 including 1 and 12) in the C language?
I've read about seeding (srand()) and using rand() within a range but am ...
1
vote
2answers
79 views
Complex numbers - Finding theta - C programming
I am a complete beginner at programming and Ive got a task to do, its pretty much just to find R and theta from a complex number, and take appropriate action using if statements depending which ...
4
votes
1answer
185 views
What is the fastest algorithm to calculate all factors of an integer number? [duplicate]
I have written this block of code but it is consuming lots of time to calculate...
Can you help me finding out an efficient way to do it?
int tag;
int* factors(int n)
{
int a[1000000];
...
0
votes
3answers
119 views
How to get the first x (leftmost) digits of a decimal number
Let's assume that I have n=1234 and I want to get the first x digits of n. Assume x=2, in C math I just compute 1234/100 and I will get 12. But how can I do it programatically? I.e., using math.
I ...
1
vote
1answer
147 views
Input validation of an Integer using atoi()
#include "stdafx.h"
#include <stdlib.h>
void main()
{
char buffer[20];
int num;
printf("Please enter a number\n");
fgets(buffer, 20, stdin);
num = atoi(buffer);
if(num ...
3
votes
3answers
128 views
Adding -1,0, or 1 randomly to a number in C [closed]
I am trying to figure out a way that I can randomly generate -1,0, or 1 using srand and rand. Whenever I do, however, I am only able to get the values inside the range generated and never the -1 or 1.
...
1
vote
2answers
89 views
Printing Number Lines in C
I try to read a file then print the number lines with them. But I don't know how can I print the lorem ipsum in the same time. Because I don't know much about printing functions in C.
Here's my code:
...
-5
votes
1answer
74 views
n - 1 digits of a number [closed]
I have an 'n' digit number. I need to print the first n - 1 digits of the same. As far as I know, it is basically division by 10. But this is to be done without using any of the arithmetic operators. ...
-6
votes
2answers
83 views
Printing in style in C [closed]
How to get the following output in C:
1 2 3 2 1
4 5 6 5 4
7 8 9 8 7
10 11 12 11 10
13 14 15 14 13
0
votes
3answers
71 views
Programing C - Auto numbering for lines?
how could I make my function to look that way?
F.Name L.Name Grade
...... ...... .....
1)Martin Peter 7
2)Rani Sari ...
0
votes
1answer
89 views
raise a complex number to any power in c language
People, can anybody tell me why this is giving me the wrong answer??
It should give me -3.00 +4.00i but it is giving me 1.00 +0.00i.
I tried 2 + 0.00i and it did a good job and returned the 4.00 but ...
0
votes
1answer
56 views
complex number in c programming
I need to work on complex to extract imaginary roots of polynomial using newton's method. The thing is that I'm getting an error, so I broke the code down to simple problem to see what's wrong. When I ...
2
votes
3answers
131 views
How to round display of float such that last two digits are always “00”?
I need to write a program in C that does the following:
Write a program so that when the user enters a floating point number, it rounds off the number to 3 decimal places. When displaying the ...
2
votes
3answers
53 views
How to log line number of the part of code that was executed using VS 2010
I have huge code which has a bug and I have no knowledge of the code. The only thing I know is that when a particular input field is giiven a +ve value it generates correct output and is a -ve value ...
5
votes
1answer
226 views
Fixed Point Multiplication of Unsigned numbers
I am trying to solve a multiplication problem with fixed point numbers. The numbers are 32 bit. My architecture is 8 bit. So here goes:
I am using 8.8 notation i.e., 8 for integer, 8 for fraction.
I ...
-5
votes
1answer
90 views
Very strange “fake numbers” in terminal
I know images aren't usually the way of doing this, but I have a very strange.. error.. seems more like a hack than anything else.
I have a picture here that shows the code and output because it was ...
7
votes
3answers
255 views
Why is the minimum value of int 1 farther from zero than the positive value?
I want to know why int, double etc have 1 more negative value than positive value.
4
votes
4answers
238 views
Generating all distinct partitions of a number
I am trying to write a C code to generate all possible partitions (into 2 or more parts) with distinct elements of a given number. The sum of all the numbers of a given partition should be equal to ...
0
votes
2answers
98 views
Array consistency - basic C programming [closed]
I have a structure of strings (name surname address etc).
I need to make sure that the first string (the name) has no numbers in it. I've been trying different methods, but in vain. Any help? :/
...
-5
votes
3answers
71 views
C - find all the different numbers [duplicate]
Possible Duplicate:
Program to print permutations of given elements
So, i have number 153 and my program need to output - 135, 153, 315, 351, 513, 531. In other words, all possible numbers. ...
-6
votes
3answers
264 views
how to generate random numbers which do not start from 0 ( 50 - 100) etc? [closed]
please tell me is their is any way to generate random number program in c language which generate "50 to 100" random number not from 0 to 100 ???
without using if else condition??
0
votes
3answers
478 views
Find the GCD of two numbers without using divison or mod operator?
I want to find GCD of two numbers but without using division or mod operator.
one obvious way would be to write own mod function like this:
enter code here
int mod(int a, int b)
{
while(a>b)
...
4
votes
5answers
351 views
find the number in the the range 1 to 100 that has the most divisors [closed]
How to find the smallest number in the the range 1 to 100 that has the most divisors ?
I know a trivial way would be to check the divisors of each number from 1 upto 100 and keep track of the number ...
2
votes
4answers
385 views
Random number bigger than 100,000
I'm writing in C/C++ and I want to create a lot of random numbers which are bigger than 100,000. How I would do that? With rand();
2
votes
2answers
105 views
Read from text file only numbers in C
How to read from text file only numbers in C. Except spaces, symbols, enters and letters.
That's how i am reading text:
unsigned char symb, symb1;
FileIn = fopen("InCode.txt","rt");
while ...
2
votes
3answers
96 views
Threads and parallel programming
Okay so here's the question.
Say I want to compute the product of n complex numbers.
nd
What I'm trying to do is that compute the product of the 2*i and 2*i+1 (i=0;i<n/2) complex numbers in ...
0
votes
2answers
75 views
Converting two numbers into one in C
newbie question;
I have two binary numbers; say for example; 0b11 and 0b00. How can I combine the two numbers so that I get 0b1100 (i.e. place them right next to each other to form a new number)
0
votes
4answers
110 views
searching for the biggest integer in C (more than 2)
How to search for the biggest number, in a set of integers (cat1, cat2, cat3, cat4)
I code this, contemplating every alternative, except for the == alternatives (longer code!!)
Is there a more ...
-3
votes
2answers
131 views
ANSI C - Higher element on array
I'm having some issues on my code to get the highest number on an array of 5 elements, this is my code:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
float ...
3
votes
3answers
166 views
Random Number Generator Help Not producing random numbers - C
Im making a small C program to resemble the game code breaker or Mastermind. This is my code so far. As of now all it does is generate a "random" code and print the array of the code.. Every time I ...
0
votes
1answer
74 views
Optimal method to factor a number within a limit
I have a piece of code to compute the factors of a number. These factors are then used to program two dimensions of a controller (m * N). The controller generates an interrupt every N bytes so it ...
0
votes
1answer
76 views
Input a number with degree
Help with problem: I need to write C + + program, which input and displays numeric variables with operators printf and scanf. the values are:
E = 10 ^ 3
F = -450
H = 0,005 * 10 ^ 2
X = -43,562 * ...
0
votes
2answers
388 views
Even with srand (time(NULL)) out of the loop, numbers are the same for a period of time
I have a simple code in C and there is a random number generation code in the middle.. problem is that for a long period of time that number stays the same and then goes one up! rand_pick might be 5 ...
-5
votes
4answers
128 views
How to change a number to be divisible by 8 [closed]
could you tell me how to generate a smallest number greater to an input one which is divisible by 8? (preferable in C)
Is there a general solution for powers of two?
Thanks
1
vote
2answers
73 views
Search occurances of numbers in c
I know how to search for strings in C. I use a for loop then a strstr function to determine if there is any occurrences. But now I have int numbers than i want to search for. I did find couple of ...
0
votes
4answers
56 views
Using unique short and double value
I have a C array of shorts and an array of longs. I want to be able to define when one of the array slots is not able to be filled by a function that calls it because there is insufficient or missing ...
0
votes
4answers
253 views
`clear` causes undefined reference error
I'm don't seem to be able to generate random number in C under Ubuntu 12.04.
I wrote the fallowing code:
#include <stdio.h>
#include <stdlib.h>
#include <curses.h>
int main (int ...
2
votes
1answer
458 views
C/C++ Large number calculation
I'm trying to compute the following number in a C program :
result = (3 * pow(2,500000000) - 2 ) % 1000000000
The power of 2 is way to large to be handled properly => I'm under the impression I ...
1
vote
1answer
194 views
Openmp: increase for loop iteration number
I have this parallel for loop
struct p
{
int n;
double *l;
}
#pragma omp parallel for default(none) private(i) shared(p)
for (i = 0; i < p.n; ++i)
{
DoSomething(p, i);
}
Now, it is ...
0
votes
1answer
159 views
convert string to number and vice versa in C (NOT C++)
Is there a way to convert a string to a number and vice versa in C? I know that I can use iostream in C++ and use atoi() or sprintf() etc.. I want to know if there's a way to accomplish this in C ...
-6
votes
2answers
121 views
How can I do this array in Ansi C? [closed]
Im trying to do this array in ansi C;
the user entry is a Integer (int) X and based in that integer i want to do this array, is a serie of consecutive numbers, but just one number for index, for ...
1
vote
2answers
846 views
Algorithm to find all the exact divisors of a given integer
I want to find all the exact divisors of a number.
Currently I have this:
{
int n;
int i=2;
scanf("%d",&n);
while(i<=n/2)
{
if(n%i==0)
...
9
votes
3answers
2k views
Finding Hardy Ramanujan Numbers
Find the first n Hardy-Ramanujan numbers. Given a value n. I would like to find the first n Hardy Ramanujan Numbers.
A Hardy Ramanujan Number being a number that can be expressed as sum of two perfect ...
-1
votes
1answer
71 views
C GMP unlimited precision - what i am doing wrong?
i have such code (copy paste from wiki). Its multiplication of those big numbers what u see in code. My gmp version is 5.0.5.
#include <stdio.h>
#include <gmp.h>
int main() {
mpz_t ...

