#1_code "HELLO WORLD 🌎"
°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
TO REMEMBER FUNCTION FOR ALL PROGRAM 😳
✓very easy to remember
#include <stdio.h> #include<conio.h>
Void main()
{
getch();
}
To write function the program will not compile.😱
~ the contents of stdio.h ("standard input and output") file in the program
~The stdio.h file contains functions such as scanf() and printf() to take input and display output respectively.
~The execution of a C program starts from the main() function.
~ In this program, printf("Hello world!") displays Hello World! text on the screen.☺️
~"The getch" in a non-standard function used to receive a character as input from the user.👍
~ To write this ; function for end of the statment📌
°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
TO REMEMBER FUNCTION FOR ALL PROGRAM 😳
✓
#include <stdio.h> #include<conio.h>
Void main()
{
getch();
}
To write function the program will not compile.😱
~ the contents of stdio.h ("standard input and output") file in the program
~The stdio.h file contains functions such as scanf() and printf() to take input and display output respectively.
~The execution of a C program starts from the main() function.
~ In this program, printf("Hello world!") displays Hello World! text on the screen.☺️
~"The getch" in a non-standard function used to receive a character as input from the user.👍
~ To write this ; function for end of the statment📌