Wednesday, June 9, 2021
Home »
» Version 2: How to uninstall uninstall Jupyter notebook ?
Version 2: How to uninstall uninstall Jupyter notebook ?
Related Posts:
CONVERSION FROM UPPER TO LOWERCASE IN 8086 PROGRAMMINGTITLE UPPER TO LOWER CASE .MODEL SMALL .STACK 64 .DATA MAXCHR DB 20 ACTCHR DB ? ACTSTR DB 20 DUP(?) RESULT DB 20 DUP('$') .CODE MAIN PROC FAR MOV AX,@DATA MOV DS,AX MOV DX,OFFSET MAXCHR MOV AH,0AH INT 21H LEA SI,ACTSTR LEA … Read More
Tic tac toe game in C#include<stdio.h> #include<conio.h> #include<stdlib.h> #include <windows.h> int board[10] = {2,2,2,2,2,2,2,2,2,2}; int turn = 1,flag = 0; int player,comp; void menu(); void go(int n); void start_ga… Read More
Simple quiz in C#include<stdio.h> #include<conio.h> #include <windows.h> #include<ctype.h> #include<stdlib.h> #include<time.h> #include<dos.h> void displayscore() { char name[20]; … Read More
Check if a string is palindrome or not in C ?#include<stdio.h> #include<string.h> void main() { char word[50]; int i,j,l,c=0; printf("Enter a word : "); gets(word); l=strlen(word); … Read More
Graphics in C#include <windows.h> #include <stdio.h> void SetColorAndBackground(int ForgC, int BackC); void main() { int f,b; system("cls"); printf("Enter … Read More
0 comments:
Post a Comment