This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main() | |
{ | |
int n,c,k; | |
printf("Enter the integer in decimal number:\n"); | |
scanf("%d",&n); | |
printf("%d is the binary number system is:\n",n); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int lcm(int,int); | |
int main() | |
{ | |
int a,b,l; | |
printf("Enter any two postive integers"); | |
scanf("%d%d",&a,&b); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Techy tech's Sign in form</title> | |
</head> | |
<body> | |
<form> | |
<table> | |
<tr> | |
<td> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
color 0a | |
:start %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random% | |
goto start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Matrix Rain</title> | |
<style> | |
* {margin: 0; padding: 0;} | |
body {background: black;} | |
canvas {display: block;} | |
</style> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Login form</title> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
<body> | |
<div class="loginbox"> | |
<img src="avatar.jpg"> | |
<h1>Login Here</h1> | |
<form> | |
<p>Username</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dim fame | |
fname=inputbox("yourtexthere!") | |
fname=inputbox("yourtexthere!") | |
fname=inputbox("yourtexthere!") | |
fname=inputbox("yourtexthere!") | |
fname=inputbox("yourtexthere!") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim msg,sapi | |
msg = InputBox(" Enter your text for Audio conversion ") | |
Set sapi=CreateObject("sapi.spvoice") | |
Sapi.Speak msg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
color 0a | |
:loop | |
echo %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random% | |
goto loop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tkinter import* | |
def iCalc(source, side): | |
storeObj = Frame(source, borderwidth=1, bd=4,bg="powder blue") | |
storeObj.pack(side=side, expand=YES, fill=BOTH) | |
return storeObj | |
def button(source, side, text, command=None): | |
storeObj = Button(source, text=text, command=command) | |
storeObj.pack(side=side, expand=YES, fill=BOTH) | |
return storeObj | |
class app(Frame): |
OlderNewer