answersLogoWhite

0

this is a tricky one... press alt + f4 and see if that works.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the mean of echoed in c language?

It has nothing to do with C-language, it simply means that when you press a key representing a character, the character appears on the screen.


Why you are using clrscr in c language?

Function 'clrscr' is not part of the C language. Or the standard libraries. It is MS-DOS specific function, use the help for details (clrscr means clear the screen).


Special character in C language?

special character in c language are as follows~ ' ! @ # % ^ & * () _ - + = | \ {} [] : ; " <> , . ? /


In Linux platform which c function is used to clear a screen?

use system("clear"); eg: main() { system("clear"); }


Write an assembly language program to print a to z on screen?

write a program to print A to Z on screen in c?


How to you use clear screen in turbo C?

by using "clrscr" command at starting of the program


How can you clear screen in c without clrscr?

You can use system("cls") function with stdlib.h


How do you display del symbol on output screen using C Plus Plus?

The del character, #255, has no symbol. It is a non-printing character, so you cannot display it on the screen.


Why you use ctype.h in c language?

it contains the information used by character classification and character conversion macros


Write a program in c language to implement framing methods like character stuffing?

A program in c language to implement framing methods like character stuffing can be grave sizeCRC-32 and the variable c50.


Where you are using -127 in character data type in c language?

Anywhere I need to.


What is clear screen in c plus plus?

For computers that have Windows installed, you can use System("CLS"); to clear the screen. This statement calls on the operating system to find the "cls" command and execute it. However, this statement makes your program less portable as it makes it dependent on the Windows OS in order to clear the screen.