Skip to main content

Posts

Showing posts with the label 1

DOWNLODE DEV C+++

FIRST LINK.. DOWNLODE.. INSTALL... SELECT LANGUAGE... TERMS & CONDITION.... FILE LOCETION....(AUTO/CHOICE) AUTO SELECT(CHOICE) PLEAS WAIT.................................................. FINSH........................................................................ USE..... LINK THIS PAGE ... https://sourceforge.net › ... › Integrated Development Environments (IDE)

C language all program

C language all program Example 1 - C hello world program /** My first C program */ #include <stdio.h>   int  main ( ) {    printf ( "Hello World \n " ) ;    return   0 ; } ====================================================== Output of program: "Hello World"  #include <stdio.h> int  main ( ) {    int  x ;      printf ( "Input an integer \n " ) ;    scanf ( "%d" ,   & x ) ;   // %d is used for an integer      printf ( "The integer is: %d \n " ,  x ) ;      return   0 ; } Output: Input an integer 7897 The integer is: 7897 ===================================================== Example 3 - using if else control instructions #include <stdio.h>   int  main ( ) {     int  x  =   1 ;       if   ( x  ==   ...