BASIC CODE FOR PROGRAMMING BEGINNNERS
FIRST CODE output #include <stdio.h> int main () { //first program:just printing any statement. printf ( "Nandini is a good girl." ); //we can add space acco. to our choices // semicolon is a must . //we can add anything between the inverted commas. return 0 ; } input Nandini is a good girl.