-
M.N.Safiyabe started the topic PHP syntax in the forum C++ 2 years, 5 months ago
<!DOCTYPE html>
<html>
<body><?php
$color = “red”;
echo “My car is ” . $color . “<br>”;
echo “My house is ” . $COLOR . “<br>”;
echo “My boat is ” . $coLOR . “<br>”;
?></body>
</html> -
M.N.Safiyabe started the topic PHP Hello Word in the forum C++ 2 years, 5 months ago
<!DOCTYPE html>
<html>
<body><?php
ECHO “Hello World!<br>”;
echo “Hello World!<br>”;
EcHo “Hello World!<br>”;
?></body>
</html> -
M.N.Safiyabe started the topic PHP Boolean in the forum C++ 2 years, 5 months ago
<?php
if ($action == “show_version”) {
echo “The version is 1.23”;
}
if ($show_separators == TRUE) {
echo “<hr>n”;
}
if ($show_separators) {
echo “<hr>n”;
}
?> -
M.N.Safiyabe started the topic User story life cycle in the forum C++ 2 years, 5 months ago
software development lifecycle includes the concept, inception, construction, release, production, and retirement phases.
-
M.N.Safiyabe started the topic Variable in c++ in the forum C++ 2 years, 5 months ago
int myNum;
myNum = 15;
cout << myNum; -
M.N.Safiyabe started the topic What is stack in C++ in the forum C++ 2 years, 5 months ago
#include <iostream>
#include <stack>
using namespace std;
int main() {
stack<int> stack;
stack.push(21);// The values pushed in the stack should be of the same data which is written during declaration of stack
stack.push(22);
stack.push(24);
stack.push(25);
int num=0;
stack.push(num);
stack.pop();…[Read more] -
M.N.Safiyabe started the topic Program in c++swap two numbers in the forum C++ 2 years, 5 months ago
#include <iostream>
using namespace std;int main()
{
int a = 5, b = 10, temp;cout << “Before swapping.” << endl;
cout << “a = ” << a << “, b = ” << b << endl;temp = a;
a = b;
b = temp;cout << “nAfter swapping.” << endl;
cout << “a = ” << a << “, b = ” << b << endl;return…
-
M.N.Safiyabe started the topic How to print the coloured text in C++ in the forum C++ 2 years, 5 months ago
#include <stdio.h>
int main()
{
printf(“
