Search
 
SCRIPT & CODE EXAMPLE
 

C

programmation c

main() 
{
      printf("hello, world
"); 
}
Comment

programmation c

#include <stdio.h> 
/* inclusion en tête du programme du fichier bibliothèque 
C/UNIX stdio.h 
*/ 
int somme(int, int);          /* Déclaration d'une fonction somme */ 
main() { 
       int a,b,s; 
       scanf("%d%d", &a,&b);  /* lecture des deux entiers */ 
       s = somme (a,b);       /* appel de la fonction somme */ 
       printf(" Voici leur somme : %d
", s); 
} 

/* La fonction somme avec deux paramètres formels x et y */ 
int somme (int x, int y) { 
       return (x+y); 
}
Comment

PREVIOUS NEXT
Code Example
C :: change variable type in c 
C :: Sampoo C programming 
C :: float 
C :: transpose of a matrix in c 
C :: perfect numbers in c 
C :: c variable 
C :: how to get value of multidimensional array in c 
C :: how to stop scanf from adding a new line in c 
C :: calendar in c 
C :: jframe mittig positionieren 
Dart :: screen size flutter 
Dart :: navigator.pushandremoveuntil flutter 
Dart :: flutter sharedpreferences clear 
Dart :: flutter textspan onclick 
Dart :: how to get the name of the day in flutter 
Dart :: height appbar flutter 
Dart :: remove space from string dart 
Dart :: put container in bottom column flutter 
Dart :: check if isempty TextEditingController flutter 
Dart :: flutter dissmis snackbar 
Dart :: textspan flutter 
Dart :: how to put tapping effect on card in flutter 
Dart :: replace string in dart,replace string in dart using regex 
Dart :: flutter list dynamic to list int 
Dart :: how to give bottom padding in Listview in flutter 
Dart :: how to get the last values of a string dart 
Dart :: drawerheader height flutter 
Dart :: flutter padding 
Dart :: imageprovider flutter 
Dart :: flutter performance tips 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =