php-mysql PHP connecting mysql database with your site Yustin 16:47 <?php $servername = "localhost"; $username = "root"; //use your name $password = ""; //put ... Read more No comments:
c Greatest element of an array Yustin 10:54 C program to find greatest element of an array #include <stdio.h> #include<conio.h> int main() { int a[3]; int... Read more No comments:
c c array examples Yustin 09:58 C program to calculate the average using arrays . #include <stdio.h> int main() { int n,i; float num[100], sum = 0.0, aver... Read more No comments: