C++ Terms in Filipino

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Common C++ Terms Filipino

 Declaring – is like int x, wala ka pang binibigay na value 


 
 Initializing – is like int x = 3; nag declare ka plus nag assign ka ng
value 
 
 Function – kung may codes
ka na need maexecute paulit ulit throughout the
program, pwede ka nalang 
  gumawa ng sariling function para kung need mong iedit ung code, sa
function ka nalang eedit 
  tas tatawagin mo nalang ung function, usually function is defined
first before the main function 
 
 Method – The code or laman ng isang function 
  
 Argument – the values na ilalagay para sa parameters ng function
like multiply(2, 3) 
 
 Parameter – basically yung need mong ipass sa function e.g.
multiply(int x, int y) 
 
 Object – like the cookies where class is the cookie cutter,
like cout and cin, objects sila from ostream 
 
 Classes in standard library – where objects come from like
iostream gives cout and cin 
 
 Void function  - functions that don't return values, can be used to
not have to repeat cout and cin if needed  
                 a lot of times 
 
 Data structures – ways how to structure data like arrays, linked
list and etc. 
 
 Arrays - holds fixed number of values of a certain datatype 
 
 Index – the position number of each value in an array 
 
 Linked list – data structure where each element is seperate 

You might also like