Hello World Program in C Get link Facebook X Pinterest Email Other Apps February 16, 2019 #include <stdio.h> int main() { printf("Hello World!"); return 0; } Get link Facebook X Pinterest Email Other Apps Comments
What "e" means in PHP?? July 15, 2019 <?php echo 2e0 . '<br/>'; echo 2e1 . '<br/>'; echo 2e2 . '<br/>'; echo 2e3 . '<br/>'; /* outputs: 2 20 200 2000 */ ?> Read more
Calling a function inside another function in PHP July 15, 2019 <?php function name() { return 'Rangan Roy'; } function show_name() { echo name(); } show_name(); // output: Rangan Roy ?> Read more
Echoing a function that echoes and returns values in PHP March 17, 2019 <?php function print_name() { echo 'Name'; return 'World'; } echo 'Hello'.print_name(); /* Output: Name Hello World */ ?> Read more
Comments
Post a Comment