long long x; double n;
x=long long(n);

This doesn't work. What is the correct way?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

In any plain C / C++ compiler, in order to cast you have to use parentheses "(mytype)myvar", maybe you where confused because you required 2 separate words...

link|improve this answer
feedback

The obvious:

x = (long long) n;
link|improve this answer
feedback

C does not have constructors, this looks like a C++ constructor call.

In C, the syntax of a cast is a type name in parenthesis. It works as a prefix operator, changing the type of the expression to the right:

long long x = (long long) 3.14;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.