Posts

Showing posts from October, 2019

pow() library functions in c++

Visit this for more details: www.russelltheprogrammer.com Collected from Sometimes  you  need to   use exponencial or  power  , there is a library functions  named   pow() . http://russelltheprogrammer.com/  ::  Source Some example in  c++  given below: double pow( double x, int y ); // C++ only float pow( float x, float y ); // C++ only float pow( float x, int y ); // C++ only long double pow( long double x, long double y ); // C++ only long double pow( long double x, int y ); // C++ only Even you can also use pow() function as  below  method: double pow( double x, double y ); float powf( float x, float y ); long double powl( long double x, long double y ); Let’s See Some Code in C++: #include <bits/stdc++.h> using namespace std; int main() { double x = 7.0, y = 9.0, z; z = pow( x, y ); printf( “%.1f to the power of %.1f is %.1f\n”, x, y, z ); return 0; } Output: 7.0 to the power of 9.0 is 40353607.0 Source  :  http://russelltheprogrammer.com

https://programmingsolutionseasy.blogspot.com/?m=1

https://programmingsolutionseasy.blogspot.com/?m=1 https://programmingsolutionseasy.blogspot.com/?m=1 https://programmingsolutionseasy.blogspot.com/?m=1

Awesome tutorial URI solve

https://programmingsolutionseasy.blogspot.com/ Uri solve https://programmingsolutionseasy.blogspot.com/2019/10/uri-1002-problem-solution-uri-problem.html

PHP Basic Lesson-1

Image
PHP Basic Lesson-1: What is PHP (What is PHP)? PHP  PHP is a server-side scripting language, created by Rasmus Lardorf 3. Which is specifically used to create any dynamic and interactive web development or web based software and web based application. Currently called General Purpose Programming Language.  That is, whatever can be done with other programming languages ,  PHP can be done with it. Also, PHP is more open source for web programmers.  However, it is most commonly used for web development, web based software  and web based applications . In addition, PHP provides the highest security for  data protection on the web. Can also be used with PHP HTML .

Demo Title

All of this are Demo. Content is coming soon....

Wait

Coming Soon ......