Hi, I have a couple of questions
Let's say I have this code:
class alumno
{
private:
string nombres;
char telefono[12];
int nivel;
public:
alumno();
~alumno();
}
and then in the main declar...
Good morning.
I would like to know some concepts about the c ++ and c libraries.
My first question would be why you can use stdio.h in c ++ in addition to iostream, and which is better to use in the end, besides another question would be the dif...
Currently I can only show / hide a single element like this:
$(document).ready(function () {
$("#Mostrar_Tabla").click(function () {
if ($("#Tabla_Mostrar").is(":visible")) {
document.getElementById...
This is the code:
import pygame,sys
from pygame.locals import *
from random import randint
ancho = 1280
alto = 720
class Snake(pygame.sprite.Sprite):
def __init__(self):
pygame.sprite.Sprite.__init__(self)
self.Image...
I'm trying to understand the basics to have solid foundations.
At the moment I'm doing an exercise to recover some fictitious tweets. I am making an effort to understand well the reason of all the development of the loop and I have something...
I am building two applications one in C# and one in Java, which will use RSA as part of the encryption and decryption that should be handled.
When I encrypt with java and decrypt in c# works perfect, the problem is when I...
I have a series of labels in my view JSP . Each label shows a unit of measure and if you want to edit it, it is replaced via javascript with a input via button.
NOTE: both the labels and the input are elements wit...
Suppose I have the following div:
<div class="contenido">
<img src="pepito.jpg">
Hombre
</div>
I need to hide the text "Man".
How do I do it?
With clear css this
I have an empty object defined (associative array)
obj = {}
If I try to consult some parameter this will return undefined to me because it is empty.
>> console.log(obj.id)
undefined
now I assign a value to id
>> obj.id...
I'm trying to reuse ajax to make it more mobile in my project.
Put it in the following way waiting for an answer but no.
function _ajax(params,uri,type){
$.ajax({
url: uri,
type: type,
dataType: 'json',...