Posts by Miguel Garcia Silvestre • 13 points
4 posts
-
1
votes2
answers4107
viewsA: Concept of class, entity and objects
Summary of the work: Class is a set of distinct objects, but with the same characteristics and behaviors. Object is an instance or model derived from a class. Therefore object is the representation…
-
0
votes1
answer97
viewsQ: I’m having trouble compiling a simple C program
# include <stdio.h> int main(){ int y = 5; int *yPtr; printf("Address of y veriable: %x \n",&y); printf("Address stored in yPtr variable: %x \n", yPtr); printf("Value of y: %d\n", y);…
-
-1
votes2
answers78
viewsQ: Doubt in vector in c
Create a counter function that works as follows: the initial value of the counter is 5. every time the function is called its counter shall be decreased. the counter shall reset automatically: when…
-
-4
votes1
answer104
viewsQ: I’m having doubts in this puzzle, I can’t find the error in the program
ola I’m doubtful in this puzzle I can’t find the error in the program. int main(){ char n_a[500] char cit[500]; float codigo,n1,n2,n_l; printf("-------------------------------------------------\n");…
casked Miguel Garcia Silvestre 13