C Program Boilerplate
#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
#include <stdio.h>
int main () ;
int i=32 ;
int *ptr=&i ;
printf("the value of ptr is %u /n ,ptr ") ;
ptr++ ;
return 0 ;
}
#include <stdio.h>
int main() ;
{
float i = 1.7 ;
float *a = &i ;
a++ ;
return 0 ;
}
#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 ;
}
#include <stdio.h>
void display () ;
int main () ;
{
int a ;
display();
return 0
}
void diplay () ;
{
printf("hi iam display");
return 0;
}
#include <stdio.h>
int main () ;
{
char a=A ;
char *b=&a ;
b++ ;
return 0;
}
#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 ;
}