
Basic Project Example(HTML,CSS,JS)
Basic Project in HTML, CSS and Javascript Click Here to DownloadProject Example_ Project Example <—DOWNLOAD
Read More........Basic Project in HTML, CSS and Javascript Click Here to DownloadProject Example_ Project Example <—DOWNLOAD
Read More........Schedule(HTML)<–DOWNLOAD Schedule_with_CSS<–DOWNLOAD Schedule <– DOWNLOAD Schedule_with_CSS(DOWNLOAD, This file includes CSS) Example: <!DOCTYPE html> <html> <body> <h1>Schedule for Third Semester(BCA)</h1> <table border=”5″ cellpadding=”5″ cellspacing=”5″ align=”center”> <tr> <td align=”center” height=”50″ …
Read More........#include<stdio.h> #include<conio.h> main() { char name[50]; char address[50]; char telno[50]; FILE *fp; int i,n; fp=fopen("a.dat","a"); printf("How many records:"); scanf("%d",&n); for(i=0;i<n;i++) { printf("\nEnter the name:"); scanf("%s",name); printf("\nEnter the address:"); scanf("%s",address); printf("\nEnter the telphone:"); scanf("%s",telno); fprintf(fp,"\n%s\t%s\t%s",name,address,telno); } fclose(fp); fp=fopen("a.dat","r"); printf("Name\tAddress\t\tTelNo\n"); while(fscanf(fp,"%s%s%s",name,address,telno)!=EOF) { …
Read More......../*sum of N integer using recursion*/ #include <stdio.h> int sum(int n); main() { int number, result; printf("Enter a positive integer: "); scanf("%d", &number); result = sum(number); printf("sum = %d", result); return 0; } int sum(int n) { if (n != …
Read More......../*Sort the names into alphabetical order using structure*/ #include<stdio.h> #include<conio.h> #include<string.h> main() { char temp_name[50],temp_add[50]; int i,j,n; struct people { char name[50]; char add[50]; } p[200]; printf("Enter the number of people"); scanf("%d",&n); for(i=0;i<n;i++) { printf("Enter name and address:"); scanf("%s%s",p[i].name,p[i].add); } …
Read More......../*Ascending order SORT*/ #include <stdio.h> main() { int i, j, a, n, number[10]; printf("Enter the value of N \n"); scanf("%d", &n); printf("Enter the numbers\n"); for (i = 0; i < n; i++) scanf("%d", &number[i]); for (i = 0; i < …
Read More......../*input N and add*/ #include<stdio.h> main() { int n, sum = 0, i, array[100]; printf("Enter the number of integers you want to add="); scanf("%d", &n); printf("\n\nEnter %d integers \n\n", n); for(i = 0; i < n; i++) { scanf("%d", &array[i]); …
Read More......../*Greatest in array*/ #include <stdio.h> int main() { int i, n; float arr[100],max; printf("Enter the number of elements (1 to 100): "); scanf("%d", &n); for (i = 0; i < n; i++) { printf("Enter number%d:", i+1); scanf("%f", &arr[i]); } max=arr[0]; …
Read More........* * * * * * * * * * * * * * * #include<stdio.h> main() { int i,j; for(i=1;i<=5;i++) { for(j=1;j<=i;j++) { printf("* "); } printf("\n"); } } 1 22 333 4444 55555 #include<stdio.h> main() { int i,j; …
Read More........