ack/lang/cem/ctest/ctconv/conv.c

142 lines
2.7 KiB
C
Raw Normal View History

1985-02-06 21:06:03 +00:00
/*
1987-03-10 01:26:51 +00:00
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
1985-02-06 21:06:03 +00:00
*
*/
/* Author: E.G. Keizer */
char rcs_id[] = "$Header$" ;
1985-02-06 21:06:03 +00:00
main() {
t1() ;
return 0 ;
}
t1() {
char c ; int i ; long l ; unsigned u ;
#ifndef NOFLOAT
float f ;
#endif
1985-02-06 21:06:03 +00:00
/* test conversions */
/* first some conversions on constants */
printf("(int) '\\377' = %d\n",(int) '\377') ;
printf("(long) -1 = %ld\n",(long) -1 ) ;
#ifndef NOFLOAT
1985-02-06 21:06:03 +00:00
printf("(float) 12 = %f\n",(float) 12 ) ;
printf("(int) 3.14 = %d\n",(int) 3.14 ) ;
#endif
1985-02-06 21:06:03 +00:00
printf("(int) 32767L = %d\n",(int) 32767L ) ;
printf("(int) -32768L = %d\n",(int) -32768L ) ;
printf("(char) 128L = %d\n",(char) 128L) ;
printf("(char) 0377 = %d\n",(char) 0377 ) ;
printf("(char) -1 = %d\n",(char) -1 ) ;
printf("(char) 10000 = %d\n",(char) 10000 ) ;
/* conversions from characters */
printf("From character\n") ;
c = 127 ;
i=c ;
l=c ;
u=c ;
#ifndef NOFLOAT
1985-02-06 21:06:03 +00:00
f=c ;
#endif
printf("\tchar %5d, int %6d, unsigned %6o, long %11ld\n",c,i,u,l) ;
#ifndef NOFLOAT
printf("\t\t\t\t\tfloat %f\n",f) ;
#endif
1985-02-06 21:06:03 +00:00
c = -1 ;
i=c ;
l=c ;
u=c ;
#ifndef NOFLOAT
1985-02-06 21:06:03 +00:00
f=c ;
#endif
printf("\tchar %5d, int %6d, unsigned %6o, long %11ld\n",c,i,u,l) ;
#ifndef NOFLOAT
printf("\t\t\t\t\tfloat %f\n",f) ;
#endif
1985-02-06 21:06:03 +00:00
c = 0377 ;
i=c ;
l=c ;
u=c ;
#ifndef NOFLOAT
1985-02-06 21:06:03 +00:00
f=c ;
#endif
printf("\tchar %5d, int %6d, unsigned %6o, long %11ld\n",c,i,u,l) ;
#ifndef NOFLOAT
printf("\t\t\t\t\tfloat %f\n",f) ;
#endif
1985-02-06 21:06:03 +00:00
/* from integer */
printf("From integer\n") ;
i= -64 ;
c=i ;
l=i ;
u=i ;
#ifndef NOFLOAT
1985-02-06 21:06:03 +00:00
f=i ;
#endif
printf("\tchar %5d, int %6d, unsigned %6o, long %11ld\n",c,i,u,l) ;
#ifndef NOFLOAT
printf("\t\t\t\t\tfloat %f\n",f) ;
#endif
1985-02-06 21:06:03 +00:00
/* from long */
printf("From long\n") ;
l = -3 ;
c = l ;
i = l ;
u = l ;
#ifndef NOFLOAT
1985-02-06 21:06:03 +00:00
f = l ;
#endif
printf("\tchar %5d, int %6d, unsigned %6o, long %11ld\n",c,i,u,l) ;
#ifndef NOFLOAT
printf("\t\t\t\t\tfloat %f\n",f) ;
#endif
1985-02-06 21:06:03 +00:00
1987-12-04 12:53:18 +00:00
printf("Casts from long\n");
l = 75000;
printf("\tchar %5d, int %d, unsigned short %6o, long %11ld\n",
(char) l,(int) l,(unsigned short)l ,l) ;
#ifndef NOFLOAT
1985-02-06 21:06:03 +00:00
printf("From float\n") ;
f = 121.5 ;
c = f ;
i = f ;
u = f ;
l = f ;
printf("\tchar %5d, int %6d, unsigned %6o, long %11ld, float %f\n",c,i,u,l,f) ;
f = 1e-4 ;
c = f ;
i = f ;
u = f ;
l = f ;
printf("\tchar %5d, int %6d, unsigned %6o, long %11ld, float %f\n",c,i,u,l,f) ;
f = 3276.6e1 ;
i = f ;
u = f ;
l = f ;
printf("\tint %6d, unsigned %6o, long %11ld, float %f\n",i,u,l,f) ;
f = 1223432e3 ;
l = f ;
printf("\tlong %11ld, float %f\n",l,f) ;
#endif
1985-02-06 21:06:03 +00:00
/* some special cases */
{
int a[4] ;
l = 3 ; a[3]= -17 ;
printf("a[l] (l==%ld) %d\n",l,a[l]) ;
printf("a[3l] %d\n",a[3l] ) ;
}
return 0 ;
}