/* * This example is to test executeReturn() function when it has returned * without a return value * */ #include #include int returnDouble(){ int a = 6; if(a<5){ return 2*a; } } void main(){ int x = returnDouble(); printf("Double is %d", x); }