-nan(ind) C++ Code Example


Example: nan c++ example

#include <iostream> #include <cmath> using namespace std;  // main() section int main() {     double nanValue;          //generating generic NaN value     //by passing an empty string     nanValue = nan("");          //printing the value      cout<<"nanValue: "<<nanValue<<endl;          return 0; }

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy