Dumb phones are making a comeback. The year 2000 is calling and this time GenZ is picking up. What are these dumb phones? Why are they seeing a revival?
Youtube Link
Switch case statement in C language
- switch case statement with integer value
- switch case statement with character value
Video Tutorial to Learn Java Basics
Java is an object-oriented programming language written from scratch by James Gosling at Sun Micro-systems and released in 1995. Some of the syntaxes of java are similar to c and C++.
Following is Java Video tutorial to learn basics of Java language.
How to use Colors in C Language
- Program to demonstrate each color (text, background) in C Language.
- <conio.h> header files contains the color related library function, it also contains the name constant to BLINK text.
- Text Color, Text Background and color and BLINK option is demonstrated here.
#include <conio.h>
void main(void)
{
int i;
clrscr();
textcolor(5+BLINK);
printf("COLOR DEMO \n\n");
for (i=0; i<16; i++)
{
textcolor(i);
if (i==0)
textbackground(WHITE);
else
textbackground(BLACK);
cprintf("Color code -> %d",i);
//cprintf("\r\n");
printf("\n");
}
getch();
}