top of page
Updated: Aug 17, 2023
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}
.main{
background:red;
width:200px;
height:200px;
border-radius:195px;
border:10px solid #66ffff;
border-top:10px solid #004d4d;
background:none;
animation: rotate 0.5s infinite;
}
@keyframes rotate{
100%{rotate:360deg;
}
}
</style>
</head>
<body>
<h1>My Loader</h1><br><br>
<center><div class="main"></div></center>
</body>
</html>
9 views0 comments
#include<stdio.h>
void main()
{
int size;
printf("\nEnter the size of array : ");
scanf("%d",&size);
int a[size];
int i=0,e,count=0;
for(i=0;i<size;i++)
{
printf("\nEnter element : ");
scanf("%d",&a[i]);
}
printf("\nArray : ");
for(i=0;i<size;i++)
{
printf("\t%d",a[i]);
}
printf("\nEnter element to search : ");
scanf("%d",&e);
for(i=0;i<size;i++)
{
if(e==a[i])
{
count+=1;
printf("\nElement found successfully🙂🙂🙂!");
}
}
if(count==0)
{
printf("\nSorry! element is not found😅😅😅!");
}
}
0 views0 comments
bottom of page