HHimanshu-holmesinhimanshu-holmes.hashnode.dev·Mar 28, 2023 · 1 min readAnimated words are not working.import { useState } from 'react'; import { Link } from 'react-router-dom'; import Loader from 'react-loaders'; import LogoTitle from '../../assets/images/logo-s.png'; import AnimatedLetters from '../AnimatedLetters'; import './index.scss'; const Home...00
HHimanshu-holmesinhimanshu-holmes.hashnode.dev·Mar 4, 2023 · 1 min readCode in java to find the transpose of a matrix.suppose your matrix A is 3x3 ok, now every element of your matrix is present at A(i,j) So, let Transpose of your matrix is B in which row changed to the column that is A(i,j) element is going to B(j,i); import java.util.Scanner; public class Main { ...00
HHimanshu-holmesinhimanshu-holmes.hashnode.dev·Jan 25, 2023 · 1 min readProgram to convert a binary number to a decimal number in C.include<stdio.h> int main( ) { int n,nsave,rem,d,j=l,dec=O; printf("Enter the number in binary :"); scanf ("%d", &n) ; nsave=n; while (n>O) { rem=n%lO; /*Itaking last digit1 */ d=rem*j; dec+=d; j*=2; n/=lO; /*skippin...00
HHimanshu-holmesinhimanshu-holmes.hashnode.dev·Nov 26, 2022 · 1 min readWSL is not getting installedhi guys welcome back, Those who are getting messages like this during installation of WSL in windows 11 or windows 10 then follow my steps:- =>go to windows search button and search "turn windows features on or off" =>make sure you have selected ...00