Anonymous
Don't worry it's automatically triggered by the word
Anonymous
Is a bot
Anonymous
Glad you solved it!
Anonymous
Is a bot
Thank you man., Even if you're not on purpose. It's all because of you. One love #LiveLongAndHappyAnunay
MIRZA 🇵🇰
guys i need a bit of help regarding c++
Anonymous
guys i need a bit of help regarding c++
Feel free to ask your doubts
Igor🇺🇦
MIRZA 🇵🇰
Feel free to ask your doubts
actually am compiling a code in which am using Pic16f877a, LCD and a Keypad, now i have setted up code for inputting 1 to D, and its showing on LCD but i want that if 12AC pressed, it turn on RA0=1
MIRZA 🇵🇰
MIRZA 🇵🇰
thats the code am using...whenever it try to use if (switch = 0xee,0xed,0xe7,0xb7) { PORTA = 0b00000001; }
MIRZA 🇵🇰
it just give many errors
Anonymous
Sorry this is out of reach for me as of now
MIRZA 🇵🇰
Sorry this is out of reach for me as of now
ahh... u know how to use if command ??
Anonymous
Yes
Anonymous
I haven't coded for microprocessors except for Arduino
MIRZA 🇵🇰
but u know like if { i=0, j=1, i++} like that ??
MIRZA 🇵🇰
i worked on arduino too but c++ should be same for both
MIRZA 🇵🇰
assembly can be use too
Anonymous
Don't we seperate then with || or &&
Anonymous
i worked on arduino too but c++ should be same for both
Did very little in a workshop long ago
MIRZA 🇵🇰
Did very little in a workshop long ago
no problem... its been 3hours, am stucked there so searched help online....
Anonymous
I honestly haven't seen it before
MIRZA 🇵🇰
its some kind of microchip related C++
Anonymous
Oh
Anonymous
Hey all, I just created a channel. Follow if you feel it's worthy! t.me/r_cpp Thanks.
Anonymous
Hanifullah Jamalzai
benifit of using namespaces ?
Anonymous
benifit of using namespaces ?
http://www.cplusplus.com/forum/beginner/5871/
Hanifullah Jamalzai
thanks buddy
Anonymous
Np
MIRZA 🇵🇰
anyone can help me in getting keypad combination to trigger some output ??
Anonymous
anyone can help me in getting keypad combination to trigger some output ??
Should be easy with if ( switch_one && switch_two )
MIRZA 🇵🇰
Should be easy with if ( switch_one && switch_two )
see above sent my c file, nd tell me where i should use switch, on keyPressed or on case
MIRZA 🇵🇰
👍👍
Anonymous
O..s..m yr
Anonymous
Ибраги́м
U shld rest, C#
Ибраги́м
Yeah, I intentionally triggered u. So dumb C#?
Ибраги́м
C#
Ибраги́м
U don't need Kali Linux to run an exploit all the time
Anonymous
I am a beginning programming student, where should i start?
Anonymous
I am a beginning programming student, where should i start?
You must understand the programmig fundaments ,that is, what is called the pseudo-code language ...
Anonymous
Thank you
👌🏻
Anonymous
Happy ccode¡¡¡
Ariana
tbh till now i can barely write pseudocode to explain my code
Faiz
who know coding checkbox with php?
Anonymous
tbh till now i can barely write pseudocode to explain my code
But to give the first lesson ... The pseudocodigo is to capture what is going to be done in a program. For example: How do you think a fried egg is made? - Colloquial language: I put it in the pan, I cold it and I eat it Pseudocode language: - Buy egg pack in the super - Take it home - Light the fire - Split the egg and beat it - Light the fireselo - Put the llema on the pan - Fry at 100 degrees centigrade - Turn off the fire - Put it on the plate - ñañam
Anonymous
ALGORITHM Algorithm definition An algorithm is a series of steps that allow solving a problem and whose purpose is the possibility of easily transcribing it into a programming language. Characteristics of an algorithm Precise: You must indicate the order in which you must have taken the necessary steps to solve the problem. Definite. This implies that the result should never change under the same conditions of the problem, this must always be the same. Finite. Do not fall into repetitions of processes unnecessarily; must end at some point. Considerations of an algorithm In an algorithm, parts should be considered: • A description of the data that is manipulated. • A description of actions that must be executed to manipulate the data. • The results obtained by the manipulation of the data. Identifiers The identifiers are the names that are assigned to the objects, which can be considered as variables or constants, are interspersed in the processes that are performed for the solution of a problem. Constant An identifier is classified as constant when the value assigned to this identifier changes during the execution or process of solving the problem. For example, in problems where to use the PI value, if the language you use to code the program and run it on the computer does not have it defined, then you can establish a constant form by setting an identifier called PI and assign it the corresponding value of the Following way: PI = 3.1416.
Anonymous
Variables The identifiers of variable type are all those objects whose value changes during the execution or process of solving the problem. For example, the salary, the payment, the discount, etc., that must be calculated with a certain algorithm, or in its case, have the length (L) and width (A) of a rectangle that will be used to calculate and obtain its area. As you can see, both L and A are variables that are provided for the algorithm to work, and are not necessarily calculated within the solution process. Types of variables They are classified depending on what they must represent in the algorithm, so they can be: Whole Real String or chain However, there are other types of variables that are allowed based on the programming language used to create the programs For the case of this book, it will be called variables of type: - whole, to all those whose value does not have decimal values; contrary to the real type, which can take values ​​with decimals. (Number of people, days worked, age of a person, etc.) - Real, you can consider the salary of a person, the percentage of X amount, etc. - string, or string in case the variables take character values (Sex of a person, false or true, the name of a person, the type of blood, etc.)
Anonymous
Pseudocodigo This tool allows you to pass almost directly the solution of the problem to a specific programming language. The pseudocode is a series of well-detailed and clear steps that lead to the resolution of a problem. The ease of passing almost directly the pseudocode to the computer has resulted in many programmers directly implementing the programs on the computer, which is NOT highly recommended, especially when you do not have enough experience for such an adventure, because one could have errors of the little accumulated experience with the solution of different problems. For example, the pseudocode for determining the volume of a box of dimensions A, B and C can be established in the following way:
Anonymous
Anonymous
As you can see, the sequence of the steps to be performed is established precisely; In addition, if the same values ​​of the variables A, B and C are always provided, the result of the volume will be the same and, therefore, there is an end.
Anonymous
Flowcharts Flow diagrams are a tool that allows to visually represent which operations are required and in what sequence they must be carried out to solve a given problem. Therefore, a flow chart is the graphic representation by special symbols of the steps or procedures in a sequential and logical manner that must be performed to solve a given problem. Generally, flowcharts are drawn before you start programming the source code, which will be later entered into the computer. Table 1.1 shows some of the main symbols used to build a flow diagram.
Anonymous
Anonymous
Within the flow diagrams, the symbols presented in Table 1.2 can be used, which indicate the operations that will be carried out on the data in order to produce a result
Anonymous
Anonymous
Where did you got this image?
Anonymous
I dont remeber ...
Anonymous
Later we are going this class ..
Ariana
oh wow interesting information
Ariana
my source of information: c documentation
Ariana
Later we are going this class ..
My school classes are like Ok so this is what a for loop is a few lessons later... this is what a variable is <i ended up writing python code to compile assembly for assignment then dropped the classes>
Kelvin
Ariana
<uses assembly>
Anonymous
I am Javero and Cshapero ... Each one is as important as the other ... it is like the chin and the chang ... They are the mutual balance with its advantages and disadvantages ....
Chris
Hi guys
Anonymous
Hi to alll
Anonymous
Heyo