equivalent code for the following c program in php
void main()
{
int i=5;printf("%d",i);
}
Answer Posted / rahul kumar
<?php
$i=5;
echo $i;
?>
| Is This Answer Correct ? | 23 Yes | 2 No |
Post New Answer View All Answers
How do you check if a variable has been set in php?
What is composer phar?
How to create a mysql connection?
How cookies are transported from servers to browsers?
What is php oop?
Is php better than python?
How can php and javascript interact?
What are the disadvantages of php?
What happens if an expected input field was not submitted?
What is difference Between PHP 5 and 7?
What is meant by ‘passing the variable by value and reference' in php?
How to check a variable is an array or not in php?
How to delete an element from an array?
What are the ways to include file in php?
What are the steps involved to run php?