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 are the delimiters in php?
A process is identified by a unique___
Which is not a php magic constant?
Define anonymous classes in php7?
Is salary fixed or variable cost?
How to define a user function?
What is parent __construct ();?
Explain the difference between array_merge() and array_combine()?
What is final class and final method in php?
What is the difference between print() and echo() in PHP?
Explain what are the three classes of errors that can occur in php?
Write logic to print Floyd's triangle in PHP?
What is a composer?
What is the sign to start variables in PHP?
Write a program to display table of a number using php?