Difference between revisions of "CSC231 Mystery C Program Solution"

From dftwiki3
Jump to: navigation, search
(New page: Back to Weekly Schedule ---- <code><pre> /* mystery.cpp // D. T. // mystery program // To compile and run this program: // // g++ mystery.cpp // a.out //...)
 
Line 1: Line 1:
[[CSC231_Class_Page | Back ]] to Weekly Schedule
+
--[[User:Thiebaut|D. Thiebaut]] 14:10, 8 October 2010 (UTC)
 +
----
 +
 
  
 
----
 
----
Line 38: Line 40:
  
 
</pre></code>
 
</pre></code>
 +
 +
<br />
 +
 +
<br />
 +
 +
<br />
 +
 +
<br />
 +
 +
<br />
 +
 +
<br />
 +
[[Category:CSC231]][[Category:C]]

Revision as of 09:10, 8 October 2010

--D. Thiebaut 14:10, 8 October 2010 (UTC)




/* mystery.cpp
// D. T.
// mystery program
// To compile and run this program:
//
//     g++ mystery.cpp
//     a.out
//
// The output of the program is the following
//
// 32740
// -32756
//
// With what positive values were x and y initialized
// at the beginning of the program.  Explain why.
// (a short int contains 16 bits)
*/

#include <stdio.h>

main() {

    short int x = 32700 ;
    short int y = 40 ;

    x = x+y;
    printf( "%d\n", x );

    x = x+y;
    printf( "%d\n", x );
}