compiler
a computer program that takes a file written in source code and changes it into a different computer language to run the program.
Demonstration of the chosen keyword.
If you wish to aid your definition with a code sample, you can do so by using a wiki code block, an example follows:
gcc -o file file.c
Preprocessor
a program that processes source code before its gets compiled.
Assembler
a program that changes assembly language into computer language.
Return Types
a function that needs to be put at the end of a method, that tells the computer what to return.
Demonstration of the chosen keyword.
If you wish to aid your definition with a code sample, you can do so by using a wiki code block, an example follows:
#include <stdio.h> int main() { return(0); }
inheritance
a way to re-use code, from higher up classes
public class
a class in C++ programming that all entities can access.
private class
a class in C++ programming that only variable in defined in the private class can access, unless a pointer is used.
multi-file program
a program that is broke up into multiple header and .cc files, that are all brought together in main.cc
-write and compile code that utilizes programming constructs -use pointers and variables to discover the indirect properties of data storage -comprehend the basics of memory management, data representation and storage -identify and label various data types as scalar vs. composite -distinguish and explain difference between homogeneous and heterogeneous composite data types -break down and separate code into functions and illustrate the use of parameter passing -justify the use of various programming constructs within code solutions -discover the standard libraries and use libraries in solving problems
students should be able to -Write programs -use pointers effectively -understand what memory management is. -use the different data types -use the different libraries to do what your trying to do
I will be measuring my success in this class on whether or not i will be able to complete the projects.
According to my method, i am understanding the basics of what i need to do, but when it comes to putting it all together in a programs by my self, i am only able to do about have of it. I end up needing to get assistance from Matt or class mates.
Reflect upon your results of the measurement to ascertain your achievement of the particular course objective.