Activating menu bar: f10
Quitting a C program: Alt + X
Opening a new file: Alt + F - New
Closing a file: Alt + f3
Opening a file: f3
Saving a file: f2
Switching from one window to another: f6
Maximizing & restore: f5
Selecting text from the keyboard: Shift + arrow key
Deleting selected data: ctrl + delete
Undo: alt + backspace
Redo: Shift + alt + backspace
Copy: Ctrl + Insert
Paste: Shift + Insert
Cut (Move): shift + delete
Deleting a line: ctrl + Y
Compiling a program: alt + f9
Executing (Running) a program: ctrl + f9
Output window: alt + f5
Commenting a line (non-executable line): //
Syntax of a C program:
#include<stdio.h> (standard input output header file)
#include<conio.h> (console input output header file)
void main()
{
clrscr();
getch();
}
No comments:
Post a Comment