Found 61 Questions For Programming

How To Create Superman Mode Minion Using HTML, CSS & JavaScript

Updated on 31-Dec-2021 12:17:58
Hello Everyone, In this tutorial we are going to create superman mode minion using HTML, CSS & JAVASCRIPT. In the last tutorial we are created a minions using html and css. The three animated minions we are created in previous article. Now for create superman mode minion follow the following steps. HTML Firstly you have to create a folder for our project. You can take any name that you want. Im going to create a folder named as Minion. In the minion folder im going to create index.html file... Read Mores

Create Animated Minions Using HTML & CSS

Updated on 30-Dec-2021 20:41:30
Hello, In this tutorial we are going to create animated minions using HTML & CSS. In the last tutorial we are created Minion Using Html & CSS | Despicable Me. The Minions are small, yellow, cylindrical creatures, who have one or two eyes. They are the signature characters of the Despicable Me series. They bring much of the comedy in the film, and they are known as the scene-stealer of the movie. Frequently, they speak in an incomprehensible language, called Minionese, occasionally... Read Mores

Minion Using Html & CSS | Despicable Me

Updated on 30-Dec-2021 19:16:52
Hello, In this tutorial we are going to create my favourite cartoon character ie. The Minion. We are going to create minion using HTML & CSS. This is a Despicable Me movie minion.  In the last tutorials we are created How To Create New Year Countdown using HTML & Javascript. HTML <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Codegyan - Minion in Pure CSS</title> <meta name="viewport" content="width=device-width, i... Read Mores

How To Create New Year Countdown using HTML & Javascript

Updated on 26-Dec-2021 23:31:40
Hello everyone! Welcome to yet another tutorial. Since the new year is around the corner, I have decided to create a new year special tutorial. In this tutorial, we will create a countdown to the new year 2022. To create this project we need HTML, CSS and Javascript. Also Read : How to Create a Digital Clock Using HTML, CSS and JavaScript This project is perfect for javascript beginners and intermediates. This tutorial will help you understand the date object in javascript. So let us begin the ... Read Mores

Santa Animation With HTML & CSS

Updated on 28-Mar-2024 21:44:02
Hello and welcome to today’s tutorial. First of all, a Merry Christmas to all of you. In today’s tutorial, we will use the magic of HTML and pure CSS to create a Santa animation. This tutorial is easy to follow and fun. Enroll Our Free Course : C Programming Tutorial  The Santa animation belongs to the Christmas special series of CSS tutorials. Project Folder Structure: Firstly we create a project folder structure. The project folder is called – Santa Animation. Inside this ... Read Mores

How to Create a Digital Clock Using HTML, CSS and JavaScript

Updated on 25-Dec-2021 18:45:48
In this tutorial, we are going to create Digital Clock using HTML, CSS & JavaScript. You have to follow the belowing steps to create digital clock using javascript. In the last tutorial we are created Animated Login Form Using Only HTML & CSS | SignIn Form Design. Create Digital Clock using HTML & JavaScript Create a root folder that contains the HTML, CSS, and JavaScript files. You can name the files anything you want. Here the root folder is named digital-clock. According to the s... Read Mores

Write C Program to Reversing an Array Elements in C Programming

Updated on 17-Jan-2022 9:13:54
Program : Reversing an Array Elements in C #include<stdio.h> int main() { int arr[30], i, j, num, temp; printf("\nEnter no of elements : "); scanf("%d", &num); //Read elements in an array for (i = 0; i < num; i++) { scanf("%d", &arr[i]); } j = i - 1; // j will Point to last Element i = 0; // i will be pointing to first element while (i < j) { temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; i++; // increment i j--; // decrement j } //Print out t... Read Mores

Write a C program using pointers to read in an array of integers and print its elements in reverse order.

Updated on 19-Dec-2021 17:41:12
#include <stdio.h> #include <conio.h> #define MAX 30 void main() { int size, i, arr[MAX]; int *ptr; clrscr(); ptr = &arr[0]; printf("\nEnter the size of array : "); scanf("%d", &size); printf("\nEnter %d integers into array: ", size); for (i = 0; i < size; i++) { scanf("%d", ptr); ptr++; } ptr = &arr[size - 1]; printf("\nElements of array in reverse order are :"); for (i = size - 1; i >= 0; i--) { printf("\nElement... Read Mores

How to Implement Stack Operations Using Array using C

Updated on 18-Dec-2021 18:27:23
Program for implementing a stack using arrays.It involves various operations such as push,pop,stack empty,stack full and display. #include <stdio.h> #include <conio.h> #include <stdlib.h> #define size 5 struct stack { int s[size]; int top; } st; int stfull() { if (st.top >= size - 1) return 1; else return 0; } void push(int item) { st.top++; st.s[st.top] = item; } int stempty() { if (st.top == -1) return 1... Read Mores

How to calculate sum of 5 subjects and find percentage Using C Program

Updated on 16-Dec-2021 16:02:43
C Program to calculate sum of 5 subjects and find percentage #include <stdio.h> int main() { int s1, s2, s3, s4, s5, sum, total = 500; float per; printf("\nEnter marks of 5 subjects : "); scanf("%d %d %d %d %d", &s1, &s2, &s3, &s4, &s5); sum = s1 + s2 + s3 + s4 + s5; printf("\nSum : %d", sum); per = (sum * 100) / total; printf("\nPercentage : %f", per); return (0); } Output : Enter marks of 5 subjects : 80 70 90 8... Read Mores



Advertisements

ads