ajune-programming.blogspot.com
Overloaded Function | C++ Lab
http://ajune-programming.blogspot.com/p/overloaded-function.html
Is the practice of declaring the same function with different signatures. The same function name will be used with different number of parameters and parameters of different type. But overloading of functions with different return types are not allowed. For example in this C Tutorial let us assume an AddAndDisplay function with different types of parameters. C Tutorial - Sample code for function overloading. Void AddAndDisplay(int x, int y). Cout " C Tutorial - Integer result: " (x y);. Basic Syntax in C.
ajune-programming.blogspot.com
Flow chart and Pseudocode | C++ Lab
http://ajune-programming.blogspot.com/2010/10/flow-chart.html
Wednesday, October 13, 2010. Flow chart and Pseudocode. Name the four flowchart structures :. A typical flowchart from older computer science textbooks may have the following kinds of symbols:. Start and end symbols. Represented as circles, ovals or rounded rectangles, usually containing the word "Start" or "End", or another phrase signaling the start or end of a process, such as "submit enquiry" or "receive product". Represented as a parallelogram. Examples: Get X from the user; display X. September 30,...
ajune-programming.blogspot.com
Selection Structure (if..else / switch) | C++ Lab
http://ajune-programming.blogspot.com/p/selection-structure-ifelse-switch.html
Selection Structure (if.else / switch). Selection control for Making Decision. For if.else statement. READ NUM1, NUM2. 311 DISPLAY “FIRST NUMBER ENTERED BIGGER”. 41 DISPLAY “SECOND NUMBER IS BIGGER”. Process : If mark greater than and equal to 75, score will be A. If mark less than 75 and greater than and equal to 60, score will be B. If mark less than 60 and greater than and equal to 45, score will be C. If mark less than 30, score will be D. Output : Print the grade of your score. Basic Syntax in C.
ajune-programming.blogspot.com
Problem Solving Skills | C++ Lab
http://ajune-programming.blogspot.com/2010/10/integrated-development-environment-ide.html
Wednesday, October 13, 2010. Read the problem, analyze the problem, well-understood what the problems are. User enters two numbers. Identify which the bigger number between those two numbers. If nom1 is greater than nom2 then display “First Number entered is bigger”. Else display “Second Number entered is bigger”. Draw the flowchart and pseudocode,. Convert flowchart or pseudocode into C program. Posted by Ajune Wanis. October 14, 2010 at 12:48 AM. Subscribe to: Post Comments (Atom). Basic Syntax in C.
ajune-programming.blogspot.com
Array 2-Dimensional | C++ Lab
http://ajune-programming.blogspot.com/p/array-2-dimensional.html
Subscribe to: Posts (Atom). Basic Syntax in C. Selection Structure (if.else / switch). Flow chart and Pseudocode. Render My Augmented Life. Malaysia UTM 2-Days Professional Course Developing Mobile Augmented Reality Apps 2014. Basic knowledge in Flash. Computer Graphics and Multimedia, FSKSM UTM.
ajune-programming.blogspot.com
Using DevC++ | C++ Lab
http://ajune-programming.blogspot.com/2010/10/using-devc.html
Wednesday, October 27, 2010. Dev-C is Free Software distributed under the GNU General Public License. This means you are free to distribute and modify Dev-C , unlike most Windows software! Be sure the read the license. Posted by Ajune Wanis. Subscribe to: Post Comments (Atom). Basic Syntax in C. Selection Structure (if.else / switch). Flow chart and Pseudocode. Render My Augmented Life. Malaysia UTM 2-Days Professional Course Developing Mobile Augmented Reality Apps 2014. Basic knowledge in Flash.
ajune-programming.blogspot.com
Function | C++ Lab
http://ajune-programming.blogspot.com/p/function.html
Subscribe to: Posts (Atom). Basic Syntax in C. Selection Structure (if.else / switch). Flow chart and Pseudocode. Render My Augmented Life. Malaysia UTM 2-Days Professional Course Developing Mobile Augmented Reality Apps 2014. Basic knowledge in Flash. Computer Graphics and Multimedia, FSKSM UTM.
ajune-programming.blogspot.com
Array 1-Dimensional | C++ Lab
http://ajune-programming.blogspot.com/p/array-1-dimensional.html
Subscribe to: Posts (Atom). Basic Syntax in C. Selection Structure (if.else / switch). Flow chart and Pseudocode. Render My Augmented Life. Malaysia UTM 2-Days Professional Course Developing Mobile Augmented Reality Apps 2014. Basic knowledge in Flash. Computer Graphics and Multimedia, FSKSM UTM.
ajune-programming.blogspot.com
Using Visual Studio | C++ Lab
http://ajune-programming.blogspot.com/2010/10/using-visual-studio.html
Wednesday, October 27, 2010. Microsoft Visual C (often abbreviated as MSVC or VC ) is a commercial integrated development environment (IDE) product engineered by Microsoft for the C, C , and C /CLI programming languages. It has tools for developing and debugging C code, especially code written for the Microsoft Windows API, the DirectX API, and the Microsoft .NET Framework. Posted by Ajune Wanis. Subscribe to: Post Comments (Atom). Basic Syntax in C. Selection Structure (if.else / switch).
ajune-programming.blogspot.com
Basic Syntax in C++ | C++ Lab
http://ajune-programming.blogspot.com/p/basic-syntax-in-c.html
Basic Syntax in C. C tutorial - Number data types:. This int keyword is used to declare integers, whole numbers either positive or negative. Most of the compilers treat this with a size of 2 bytes. i.e.,integer of 16 bits length. The following statement shows how the variables of int type are declared. Int var11 = 10; / Initialization for c tutorial. This long keyword is used for declaring longer numbers. i.e, numbers of length 32 bits. Float var2; / Sample declaration for float. Basic Syntax in C. Flow ...