php program to print hourglass star pattern
https://webdesigningtheory.blogspot.com/2024/06/print-hourglass-star-pattern-php.html
https://webdesigningtheory.blogspot.com/2024/06/print-hourglass-star-pattern-php.html
Blogspot
php program to print hourglass star pattern
php program to print Hollow diamond star pattern
https://webdesigningtheory.blogspot.com/2024/05/hollow-diamond-star-pattern.html
https://webdesigningtheory.blogspot.com/2024/05/hollow-diamond-star-pattern.html
Blogspot
php program to print Hollow diamond star pattern
Learning c programming language
1) c Program to Check Number is prime or Not prime
Output
enter a positive integer 133
133 is not the prime number
Click here to check the program
https://webdesigningtheory.blogspot.com/2025/02/c-program-to-check-number-is-prime-or.html
Visit the 🔗
1) c Program to Check Number is prime or Not prime
Output
enter a positive integer 133
133 is not the prime number
Click here to check the program
https://webdesigningtheory.blogspot.com/2025/02/c-program-to-check-number-is-prime-or.html
Visit the 🔗
C program to print the alphabet J start pattern
Code(program )
#include <stdio.h>
int main()
{
int a, b;
int n = 7;
// Height of the J pattern
for (a = 0; a < n; a++)
{
for (b = 0; b < n; b++)
{
// Print the vertical part of J
if (b == n / 2 && a != 0 ||
(a == n - 1 && b <= n / 2) ||
(a == n - 2 && b == 0))
printf("*");
else
printf(" ");
}
printf("\n");
}
return 0;
}
Visit the website bloggers link 🖇️🔗
https://webdesigningtheory.blogspot.com/2025/04/c-program-to-print-alphabet-j-star.html
Code(program )
#include <stdio.h>
int main()
{
int a, b;
int n = 7;
// Height of the J pattern
for (a = 0; a < n; a++)
{
for (b = 0; b < n; b++)
{
// Print the vertical part of J
if (b == n / 2 && a != 0 ||
(a == n - 1 && b <= n / 2) ||
(a == n - 2 && b == 0))
printf("*");
else
printf(" ");
}
printf("\n");
}
return 0;
}
Visit the website bloggers link 🖇️🔗
https://webdesigningtheory.blogspot.com/2025/04/c-program-to-print-alphabet-j-star.html
Introduction to PHP
ஃ It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995.
1] PHP stands for Hypertext Preprocessor.
2] It is a widely-used open-source server-side scripting language.
3] primarily designed for web development and can be embedded into HTML.
4] PHP scripts are executed on the server, generating dynamic web page content.
5] PHP code can perform tasks such as collecting form data, interacting with databases,
managing sessions, and creating cookies.
6] It is commonly used alongside MySQL or other database management systems to
create dynamic websites and web applications.
8] php is powerful and flexible language supported by a large community of developers worldwide.
Why php use
1] platform independent
2] open source
3] runs multiple operating system
e.g :- window, linux, kill , dos
4] Free to download and edit.
Visit 🔗
https://webdesigningtheory.blogspot.com/2024/03/phpintroduction.html
ஃ It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995.
1] PHP stands for Hypertext Preprocessor.
2] It is a widely-used open-source server-side scripting language.
3] primarily designed for web development and can be embedded into HTML.
4] PHP scripts are executed on the server, generating dynamic web page content.
5] PHP code can perform tasks such as collecting form data, interacting with databases,
managing sessions, and creating cookies.
6] It is commonly used alongside MySQL or other database management systems to
create dynamic websites and web applications.
8] php is powerful and flexible language supported by a large community of developers worldwide.
Why php use
1] platform independent
2] open source
3] runs multiple operating system
e.g :- window, linux, kill , dos
4] Free to download and edit.
Visit 🔗
https://webdesigningtheory.blogspot.com/2024/03/phpintroduction.html