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
Write a program to get second highest number in an array using php?
What are the environmental variables?
What are the correct and the most two common way to start and finish a PHP block of code?
How can you retrieve a cookie value?
How does csrf attack work?
Does csrf token change?
Is apache needed for php?
Do you know when sessions ends?
Which php framework is best?
What is the php function that removes the last element of the array and returns it?
Which is a perfect example of runtime polymorphism?
What is the difference between session_unregister() and session_unset()?
Where can I learn php?
How to access standard error stream in PHP?
How to write the form tag correctly for uploading files?