Tagged Questions
-1
votes
4answers
78 views
Can anyone explain the output
If I try to print a float as an int, this code:
main () {
float a = 6.8f;
printf("%d", a);
}
...
1
vote
2answers
68 views
Convert unsigned long long to double in C
I realize this question could be processor dependent, but hopefully someone can point me in the right direction. For the life of me, I cannot figure out how to convert an unsigned long long int ...
1
vote
2answers
89 views
C/C++ NaN resolution
When I'm running some code I have to add up the elements of a vector and then renormalize. I'm getting NaN so I'm hoping to resolve this.
For example, when x = [1,2,3] is a vector<double> I ...
-3
votes
1answer
68 views
Passing a double pointer to a function as reference - c
I'm having hard times trying to pass the reference of double pointer to a function.
I have this:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_ROWS 2
...
1
vote
2answers
92 views
How to get the opposite side of round()/floor() in C?
I have double a=1234.5678, now I can get 1234 by floor(a), but how do I get 0.5678?
I know I can just subtract a-floor(a), but is there a function in the runtime library?
0
votes
1answer
59 views
Why is “long double” type of a variable producing absurd output while “float” and “double” type works fine?
All I want the following program to do is to print the product of all positive numbers less than 30 (in both exponential and non-exponential forms).It works fine when the variable product is declared ...
4
votes
1answer
45 views
Is there a neutral element in IEEE754 with regards to addition
Consider the following code snippet
double id = ?;
double res;
long unsigned *res_u = (long unsigned*)&res;
long unsigned i;
for (i = 0; i < (long unsigned)-1; i++){
double *d1 = ...
1
vote
1answer
56 views
Reason to redefine double [closed]
In old project I find redefined some data types in C, like:
#typedef double scalar_t
I understand when you want to create some data type from struct like vector_t, quarternion_t etc. But, what is ...
0
votes
0answers
20 views
getting “-1.#IND00” on printing double type values in c [duplicate]
on printing floating number types values in 'c' i am getting a value "-1.#IND00" . Can someone explain the meaning of this "-1.#IND00". output snippet is
...
-1
votes
3answers
139 views
Basic C Program, Babylonian Algorithm
I'm new to the C language and am trying to do a lab tutorial that we were given at uni.
We've been asked to do the following:
Task 1.
The Babylonian algorithm to compute the square root of a number ...
1
vote
1answer
73 views
Trying to delete an element from a double linked list in c
Ι have a problem while trying to delete an element from a double linked list in c.
Nodes_t *remove_Nodes (Nodes_t *a, Nodes_t b){
Nodes_t *head;
head=a;
if ((a->i_pos==b.i_pos) ...
-2
votes
1answer
100 views
How to convert some long double to long int in c?
I'm trying to convert a double type variable to a long long int. The only way I know to do it is by casting. Althoulg it seems ok, I'm not receiving the number I wanted.
I post the code piece ...
1
vote
3answers
195 views
how to convert int part and fraction part of a double into two integers in arduino [duplicate]
How to convert in Arduino or C for example 30.8365146 into two integers: 30 and 8365146.
This problem faces me when i try to send gps data via xbee series 1 which don't allow to transmit fraction ...
5
votes
1answer
99 views
Storing small (1.0E-12) numbers as doubles in scientific notation
Here's the setup:
For my Bachelor's thesis, I want to test jet algorithms used at the LHC. Basically the first step is the folowing: Given some 4-momentum
p[0] = ...
2
votes
6answers
119 views
Can I calculate error introduced by doubles?
Suppose I have an irrational number like \sqrt{3}. As it is irrational, it has no decimal representation. So when you try to express it with a IEEE 754 double, you will introduce an error.
A decimal ...
0
votes
2answers
92 views
Taking input for arrays
In doing a project for my computer science class, I came upon a problem with arrays. Basically, I have to take an input from the user for the number of years they want to input data for. I then have ...
1
vote
2answers
76 views
can't create an array of doubles
I'm trying to create an array of doubles, and I know I can do it like this,
double a[200];
but why can't I create one like this?
int b = 200;
double a[b];
It does not work.
Can anyone help me?
...
0
votes
2answers
86 views
C++ Variable Zero Correction
The variable "probability" always comes out to zero even though the outputs of the other variables are in the same placement area as the probability variable at the end of the program. I have a ...
1
vote
2answers
89 views
Dropping extra decimal places in c
I've run into a small problem. I'm trying to remove extra decimal places in c, that will be used in calculations.
For example 67.98345,
I want it to be 67.98
But not just for a printf statement. I ...
2
votes
1answer
123 views
what is -0.0000 in c when using floats and double?
#include <stdio.h>
#include <stdlib.h>
#define answer 3.141593
void main(int argc, char **argv) {
float a = (argc - 2)?: strtod(argv[1], 0);
printf("double = %lf ...
1
vote
3answers
88 views
Can I convert 0.16, 0.32, etc. into an integer properly (16, 32, etc.) in C?
I'm trying to convert the decimal portion of a double 247.32
into an int 32. I only need two decimal places.
I can cast the double as int and subtract from the double to get .32000
I can then ...
0
votes
4answers
106 views
How to send c++ doubles from one system to another Sender: Winsock Receiver: Java
The sending C-side
double tmp = htonl(anydouble);
send(socket, (char *) &tmp, sizeof(tmp), 0);
On the Java side, im reading the network data into a char[8]
What is the proper way of ...
1
vote
2answers
56 views
C interpretation of a double
I am currently working on a project for school and I have been stopped by a problem. Basically what the assigment is: we get a file containing for instance: e 18.91, n 10.03 without the dot so there ...
0
votes
4answers
151 views
I keep getting this error: invalid operands to binary ^ (have 'double' and 'double')
Whenever I run the code my lines 52 and 61 keep giving me the same error message.
#include<stdio.h>
#include<math.h>
double getinput(void);
double calcwindchillold(double v, double t);
...
31
votes
3answers
1k views
Is a float guaranteed to be preserved when transported through a double in C/C++?
Assuming IEEE-754 conformance, is a float guaranteed to be preserved when transported through a double?
In other words, will the following assert always be satisfied?
int main()
{
float f = ...
0
votes
2answers
242 views
Incompatible types when assigning to type - C
I'm working in Code::Blocks on a project in C.
When I compile I get the error: "incompatible types when assigning to type 'double *' from type 'double'" on lines 81, 85, 90, 91.
The project is to ...
1
vote
4answers
148 views
C “double to num” conversion code: why is it written like this?
I don't understand how the following C conversion functions work (and why they're written this way); I'm fairly certain that the original author knew what he was doing:
typedef union TValue {
...
7
votes
2answers
158 views
SSE with doubles, not worth it?
I read a bit about using SSE intrinsics and tried my luck with implementing quaternion rotation with doubles. Below are the normal and SSE functions I wrote,
void quat_rot(quat_t a, REAL* restrict ...
0
votes
2answers
262 views
Fast way to scan a double - c++ [closed]
I'm trying to optimize my solution to a problem, which requires fast double scanning. I tried to implement a function which read a double from the standard input, but I failed. Could someone point me ...
0
votes
0answers
103 views
gcc have problems with double rand?
I want generate double random value. Ok, I typed:
random_value = ((double)rand() / (double)RAND_MAX);
Little checking with printf:
printf("rand: %f ", random_value);
Great, values from <0,1>. ...
1
vote
4answers
135 views
Double precision comparison in c fails [duplicate]
Possible Duplicate:
Why “for( i = 0.1 ; i != 1.0 ; i += 0.1)” doesn’t break at i = 1.0?
I have a numeric (real) interval [x, y]. I must iterate through it using something like:
nr = 0;
for ...
2
votes
3answers
103 views
Extract double from a string in c
I want to write a function in C that has one parameter as a string and returns a double number.
For example the string is fsldnf213414fasfa it should returns 213414.
But it should be also able to ...
0
votes
2answers
91 views
C: Scanned double array value changing why?
I am scanning in an array of doubles from a file.
I can print this array to retrieve the correct values for each line in the file.
My problem occurs when I try to scan in another file into another ...
4
votes
1answer
99 views
How can C store a 1001 bit number in double data type?
This is the code to calculate 1000th power of 2.
#include <stdio.h>
int main() {
double multiply = 1;
int i;
for(i = 1; i <= 1000; i++) {
multiply *= 2;
}
...
0
votes
3answers
76 views
Finding Perfect Numbers in C - Compile Error
I'm writing a simple program that finds the perfect numbers up to a given range. Here's what I have:
#include<sys/types.h>
#include<sys/time.h>
#include<time.h>
...
1
vote
1answer
100 views
Double array only stores ints
I have this code here that I think should work, and it does! except for the fact that though I've declared a pointer to an array of type double, it always stores int, and I don't know why.
first, I ...
2
votes
1answer
88 views
Issue with C double pointer allocation
I read tons of tutos and snippets, but I still don't understand why I get a segfault with this:
int fun(char **p) {
int i;
*p = malloc(2);
*p[0]=10;
*p[1]=20; // segfault NULL pointer
...
0
votes
1answer
49 views
How to check if denominator of double number is odd?
I get 2 double numbers - basic and pow , and I have to calculate basic^power .
My problem is that there is cases should throw error - like if the pow is a fraction like odd/even and the basic is a ...
0
votes
2answers
92 views
C: Adding Exponentials
What I thought was a trivial addition in standard C code compiled by GCC has confused me somewhat.
If I have a double called A and also a double called B, and A = a very small exponential say 1e-20 ...
-1
votes
4answers
134 views
Inconsistent results while printing float as integer [duplicate]
Possible Duplicate:
print the float value in integer in C language
I am trying out a rather simple code like this:
float a = 1.5;
printf("%d",a);
It prints out 0. However, for other ...
2
votes
5answers
168 views
sqrt taking int in c
I am programming in the c language on mac os x. I am using sqrt, from math.h, function like this:
int start = Data -> start_number;
double localSum;
for (start; start <= end; start++) {
...
3
votes
2answers
118 views
C double limitations in python
I know python is capable of handling arbitrary big integers, so why doesn't it give me one when using scientific notation? Why is 1e23 any different from 10**23?
Python 2.7.3 (default, Aug 1 2012, ...
-2
votes
2answers
149 views
sizeof(double) is 8 one time, another 0? [closed]
I' wrote a linked-list lib for educating myself writing C and doing some stuff related to my Information-technology learning.
I found out, that something went terrible wrong because of sizeof(double) ...
0
votes
1answer
77 views
Suffixing a double with f in C programs [duplicate]
Possible Duplicate:
Suffix of “f” on float value?
Is there a different suffix to be used with type double or is it the case that "f" works for both?
2
votes
4answers
299 views
Is there a fast C or C++ standard library function for double precision inverse square root?
I find myself typing
double foo=1.0/sqrt(...);
a lot, and I've heard that modern processors have built-in inverse square root opcodes.
Is there a C or C++ standard library inverse square root ...
0
votes
0answers
119 views
long double: from mac to windows
I implemented a C program using my mac book.
Now, my client wants to migrate to windows OS (MinGW).
Program does many calculation using long double: on mac it works fine, otherwise on winz doesn't.
...
2
votes
2answers
130 views
Small number precision in C? [duplicate]
Possible Duplicate:
Why can’t decimal numbers be represented exactly in binary?
While working on a C program in Xcode, I found that the float representation of 1/1000000 prints as 0.000000 ...
0
votes
1answer
667 views
Swapping two nodes in a double linked list
I have to write a program that will essentially sort nodes in a linked list. I have 5 functions that need to be written for this assignment and I am stuck on one of them. The function I am having ...
0
votes
2answers
70 views
pow should be able to handle things like this: why does my code freeze at this point? [closed]
So, my code can't get beyond this line:
double correction = ((double) (1/(1 + pow(2, ((double) ((popsize - maxpop)/maxpop)))))) + 0.5;
popsize is an int, and maxpop is a long int, defined by the ...
2
votes
3answers
263 views
How can I add a thousands separator to a double in C on Windows?
I use the MPFR library to do calculations on big numbers, but also return a double with 8 digits after the decimal point.
I mpfr_sprintf the number to a char array so precision or anything isn't ...





