Monday, August 24, 2020

Problem solved: Codeblocks compiler not working or not found? Install co...

Related Posts:

  • 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
  • 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
  • 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
  • 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
  • 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