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 would you declare a function that receives one parameter name hello?
Tell me how can we get the error when there is a problem to upload a file?
Tell me how to find the position of the first occurrence of a substring in a string?
Can you use php and javascript together?
What's the output of the ucwords function in this example?
Can I run php without xampp?
What are examples of dependent variables?
Write a program to show the joining of two strings in php?
Tell us how to create an array of a group of items inside an html form?
Code to open file download dialog in PHP?
How long is a php session valid?
Explain difference between urlencode and urldecode?
What is difference between count or sizeof function in php?
Is php still used?
How to join multiple strings into a single string?