Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

static_cast c++

#include <iostream>
using namespace std;
int main()
{
    float f = 3.5;
    int a = f; // this is how you do in C
    int b = static_cast<int>(f);
    cout << b;
}
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
4+4 =