latest Post

Creating Login Form in C programming

Program :


#include <stdio.h>
#include <conio.h>

void main()
{

  clrscr();
    textcolor(WHITE);textbackground(BLUE);
    gotoxy(25,6);cprintf("        Login Form     ");
textbackground(BLACK);
    gotoxy(25,8);cprintf("Username :     ");
gotoxy(25,10);cprintf("Password :     ");
    getch();
}


Output :

About Open Learning Creative

Open Learning Creative
Recommended Posts × +

0 comments:

Post a Comment

PHP Registration form using GET, POST Methods with example

Program : HTML Code <html> <head> <title>Student Info</title> </head> <body><center> ...