xxxxxxxxxx
//get a float from user
//print float value to console
#include <stdio.h>
int main()
{
//define a float variable
float a;
//print the prompt
printf("Please enter a float number: ");
//Actually getting the number
scanf("%f", &a);
printf("You have entered %f", a);
}
xxxxxxxxxx
// If the WC_product Object is not defined globally
global $product;
if ( ! is_a( $product, 'WC_Product' ) ) {
$product = wc_get_product( get_the_id() );
}
echo $product->get_name();