“C Programme Plate-plaque” Réponses codées

C Programme Plate-plaque

#include <stdio.h> 

int main () ;
int i=32 ;
int *ptr=&i ;
printf("the value of ptr is %u /n ,ptr ") ; 
ptr++ ; 
return 0 ; 
} 
Good Goshawk

C Programme Plate-plaque

#include <stdio.h>

int main() ;
{ 
  float i = 1.7 ;
  float *a = &i ;
  a++ ;
  return 0 ;
  } 
Good Goshawk

C Programme Plate-plaque

#include <stdio.h>  

int main () ;
{ 
  int a = 4 ;
  float b = 8.5 ;
  char c = a ; 
  printf ("the value of a is %d \n , a ") ;
  printf ("the value of b is %f \n , b ") ; 
  printf ("the value of c is %c \n , c ") ; 
  
 
 return 0 ; 
 } 
 
Good Goshawk

C Programme Plate-plaque

#include <stdio.h>
void display () ;

int main () ; 
{ 
int a ;
display();
return 0
} 


void diplay () ; 
{ 
printf("hi iam display");

return 0;
} 
Good Goshawk

C Programme Plate-plaque

#include <stdio.h>

int main () ;
{
char a=A ;
char *b=&a ;
b++ ; 
return 0;
} 
Good Goshawk

C Programme Plate-plaque

#include <stdio.h> 

int main () ; 
{ 
int a = 32 ;
 int b= 43 
 c = a+b ; 
 printf (" the value of a and is %d , a and b ") ; 
 
 \\ the value of  c = a+b is 75 

 return 0 ;
 } 
 
Good Goshawk

Réponses similaires à “C Programme Plate-plaque”

Questions similaires à “C Programme Plate-plaque”

Plus de réponses similaires à “C Programme Plate-plaque” dans C

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code