I have the following array in php:
Array(
[0] => Array([id] => 1 [nome] => b parceiro um [status] => true [descricao] => <p>Descrição do parceiro</p>)
[1] => Array([id] => 3 [nome] => f parceiro tres [st...
I need a feature similar to the one below:
email ListaEmail = new email();
…
while …
{
email Email = new email();
Email.email1 = adoDR["email"].ToString();
Email.tipo = adoDR["tipo"].ToString();...
I need to concatenate the elements of a 3-by-3 vector.
Here's the sample I need:
package ex;
public class prog {
public static void main(String[] args) {
// TODO Auto-generated method stub
String[] vetor = {"aaa", "aa...
I need to print the read values on the keyboard of a struct vector that form a coordinate. The problem is that when I pass the struct vector of the function that picks up and stores the data for function that will print them on the screen, the o...
I have the following structure:
[{tabela: 'tabela1', coluna: 'coluna1'}, {tabela: 'tabela2', coluna: 'coluna2'}]
I need to enter this data within div in the format:
[TABLE.COLUMN]
In case it would stay:
[table1.column...
How do I not display those gigantic numbers referring to the empty positions of my vector?
My code:
int main(int argc, char** argv) {
double notas[10];
double soma = 0, media = 0;
int i, P[10];
int j = 0, count = 0;
for(i=0;i<10;i++){...
Personal I have three arrays received via POST:
[campo_habilita] => Array ( [0] => Habilitado
[1] => Habilitado
[2] => Habilitado )
[campo_nome] => Arra...
Well, I have a little problem that I still can not solve. I already looked it up on Google, and the solutions I found did not serve my problem.
I need to transform the array "Players" that is in this JSON: link in one PHP Array.
{
"Stat...
My code is giving the following error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at t151.main (t151.java:19)
What does this mean and how do I fix it?
Follow the code:
public class t151 {...
Problems in C. This error is appearing:
Variable-sized object may not be initialized
What can I do to fix this error? Being that I have already initialized everything.
LINE 66, 67 and 68
#include <stdio.h>
#include <stdli...