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 a class in php programing?
Can the value of a constant change during the script's execution?
What is encapsulation in php with example?
What is the function file_get_contents() useful for?
What is http get and post?
Explain how to submit form without a submit button.
What is $row in php?
Do you know what does mvc stand for and what does each component do?
How to create a web form?
Why do we use in php?
Difference between get and post method.
where do we use htaccess?
Explain the difference between $var and $$var?
What is difference between compile time and run time polymorphism?
Do you know what are traits?