Posts

Showing posts from August, 2023

New Animated Login or signup page made by HTML, CSS and JavaScript.

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Animated Login And Registration Form </ title >     < link rel = "stylesheet" type = "text/css" href = "style.css" >     < link href = 'https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel = 'stylesheet' > </ head > < body >     < div class = "wrapper" >         < div class = "form-wrapper sign-in" >             < form action = "" >                 < h2 > Login </ h2 >                 < div class = "input-group" >                     < input type = "...

Wild Pointer in C

  #include <stdio.h> #include <conio.h> #include <stdlib.h> int main () {     int a = 334 ;     int * ptr ; //This is a wild pointer     // *ptr = 34;//This is not a good thing to do     ptr = & a ; //ptr is no longer a wild pointer     printf ( "The value of a is %d \n " , * ptr );     return 0 ; }