Questions tagged [int64]

The int is a datatype that represents an integer and is coded on 64 bits in memory.

int64 is a datatype that represents an (a whole number, not a fraction) and is coded on 64 bits in memory. Unlike its counterpart which is , int64 can be used to store positive and negative integers of values between -263 to 263 - 1.

260 questions
-3
votes
1 answer

Why there is error message about "__int64" when it's not even used in my code?

I wrote the code below: #define int64_t long long int typedef long long int64_t; //this line is line 2 void main() { int64_t a; } When I complied this program, the compiler displayed an error message: in line 2, '__int64' followed by 'long' is…
user19470144
-3
votes
1 answer

Input int64 to keras and process data using int64 only

exData = pd.read_csv('AP11.csv',delimiter=';',float_precision=None) pd.set_option('display.max_colwidth', None ) x = exData.loc[:,['A','B']] y = exData.loc[:,['C']] x=x.astype('int64') y=y.astype('int64') opt = Adam(lr=0.001,…
Dia Eid
  • 35
  • 7
-3
votes
1 answer

Clean up this int64 variable in python

This is the raw distribution of the var FREQUENCY NaN 22131161 1.0 4182626 7.0 218343 3.0 145863 1 59432 0.0 29906 2.0 28129 4.0 15237 5.0 4553 8.0 3617 3 2754 7 2635 9.0 …
opt135
  • 141
  • 1
  • 8
-3
votes
2 answers

Return value from the function varies in c

I wrote a program to fetch all the phone numbers from a file which has other text like at commands and other error from other child process. Here when I try to convert the string to integer using a user-defined function I facing the problem. The…
Shameerariff
  • 165
  • 1
  • 11
-4
votes
1 answer

How can I convert Int64 to String in swift?

I want to convert the value of Int64 variable to String. String(x) is not working here.
1 2 3
17
18