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
How would you declare a function that receives one parameter name hello?
What type of comments are supported by PHP.
What are the four scalar types of php?
Is empty in php?
How can we determine whether a variable is set?
How to create an empty array in php?
Is php front end or back end?
What is split function in php?
What is sql injection in php?
Differentiate between require and include?
Explain what is the main difference between require() and require_once()?
How can we change the value of a constant?
How do I display php errors?
Why is php so popular?
How to write the form tag correctly for uploading files?