equivalent code for the following c program in php
void main()
{
int i=5;printf("%d",i);
}
Answer Posted / sathish kumar.r
<?php
$i = 5;
printf("%d",$i);
?>
| Is This Answer Correct ? | 6 Yes | 12 No |
Post New Answer View All Answers
What is php explain how php works?
What is strstr php?
What is __ construct in php?
What is T_PAAMAYIM_NEKUDOTAYIM?
How is a session id generated?
Is php an api?
Name some of the constants in php and their purpose.
Differentiate between php5 and php7?
Tell me how can we automatically escape incoming data?
How to remove values saved in the current session?
When to use single quotes, double quotes, and backticks?
Explain the types of functions for Splitting String?
What is variable give example?
Do you know how to get the ip address of the client?
What is == and === in php?