Posts by Samuel • 305 points
2 posts
-
11
votes2
answers8942
viewsQ: How to verify if a variable is float, decimal or integer in Javascript?
I tried with typeof(), but it only returns to me if it is a number, string, etc.. It would be something like that: var x = 1.2; if (x == inteiro){ alert("x é um inteiro"); }…
-
9
votes1
answer1625
viewsQ: How to include a C function in Python?
I want to use a function made in C. Example: I have a function int swap(){ printf("lista"); } And I want to call you by Python...…