source: src/examples/square.c@ 08a40fd

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 08a40fd was 784deab, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

fix recursive include bug in shadow includes, major clean of examples, add several long long routines to prelude

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[86bd7c1f]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// square.c --
8//
9// Author : Richard C. Bilson
10// Created On : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
[784deab]12// Last Modified On : Tue Jan 5 18:08:20 2016
13// Update Count : 21
[86bd7c1f]14//
15
[784deab]16#include "fstream.h"
[a0d9f94]17
[86bd7c1f]18forall( type T | { T ?*?( T, T ); } )
[a0d9f94]19T square( T t ) {
[86bd7c1f]20 return t * t;
[784deab]21} // square
[86bd7c1f]22
[a0d9f94]23int main() {
[784deab]24#if 0
25 ofstream *sout = ofstream_stdout();
26 sout | "result of squaring 9 is " | endl;
27
28 // char does not have multiplication.
29 char ?*?( char a1, char a2 ) {
30 return (char)((int)a1 * (int)a2);
31 } // ?*?
32 char c = 9;
33 sout | "char\t\t\t" | square( c ) | endl;
34
35 sout | square( s ) | endl;
36#endif
37 short int s = 9;
38 square( s );
39#if 0
40 signed int i = 9;
41 sout | "signed int\t\t" | square( i ) | endl;
42
43 unsigned int ui = 9;
44 sout | "unsigned int\t\t" | square( ui ) | endl;
45
46 long int li = 9;
47 sout | "signed long int\t\t" | square( li ) | endl;
48
49 unsigned long int uli = 9;
50 sout | "unsigned long int\t" | square( uli ) | endl;
51
52 signed long long int lli = 9;
53 sout | "signed long long int\t" | square( lli ) | endl;
54
55 unsigned long long int ulli = 9;
56 sout | "unsigned long long int\t" | square( ulli ) | endl;
57
58 float f = 9.0;
59 sout | "float\t\t\t" | square( f ) | endl;
60
61 double d = 9.0;
62 sout | "double\t\t\t" | square( d ) | endl;
63
64 long double ld = 9.0;
65 sout | "long double\t\t" | square( ld ) | endl;
66#endif
67} // main
[86bd7c1f]68
69// Local Variables: //
70// tab-width: 4 //
[784deab]71// compile-command: "cfa square.c fstream.o iostream.o iterator.o" //
[86bd7c1f]72// End: //
Note: See TracBrowser for help on using the repository browser.