answersLogoWhite

0

turn it completely off then back on.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the return value of getch?

getch(); is used for unbuffered input. e.x: int main() { char num=0; printf("Press a keyboard button: "); num = getch(); //This brings in 1 character that the user pressed on the keyboard printf("\nYou pressed: %c", num); //This prints the character you pressed getchar(); // I am using getchar(); to stop the program from ending after pressing buttons return 0; } My input will be within the (). output: Press a keyboard button: (v) You pressed: v EOP //End of program I hope this has helped you!


What key do you press to activate the numeric keypad?

It is the key marked: Num Lock. There should be a light showing on the keyboard when the Num Lock has been pressed and the numeric keypad can be used.


What if the button for the numbers dontwork what does that mean?

If you are on a computer and the number pad doesn't work then the num lock button might need to be pressed.


How do you get o to not make 6 on the keyboard?

turn the "num lock" off.


How do you write a c program to convert binary code to Gray code?

unsigned binary_to_gray (unsigned num) { return num ^ (num >> 1); } unsigned gray_to_binary (unsigned num) { /* note: assumes num is no more than 32-bits in length */ num ^= (num >> 16); num ^= (num >> 8); num ^= (num >> 4); num ^= (num >> 2); num ^= (num >> 1); return num ; }


The numbers on my MacBook won't work and now I have to use the numbers below the letters. How do I get the numbers to work?

Make sure your NUM LOCKS key is not pressed down.


How do you turn off the alt car key on your laptop?

press num lk button


How to turn on num lock on dell latitude e5520?

Hold ALT and press the key with the 9 inside the lock. (above the 7 key on the number pad.)


How do you turn function keys on?

Press Fn. If you want to use the number pad on the keyboard on a laptop, press fn and then num lock and then the num lock again (maybe fn before, depends on the computer) to turn the numbers off. Hope this helps :)


What time does day turn to night in Pokemon plati num?

from 20.00 o'clock to 4 o'clock


Cookie monster phrases?

num num num


How do you convert a number into a degree circle?

In simple Python code: def convertToAngle(num): while True: if num < 0: num = 360 - num elif num > 360: num -= 360 else: break return num