This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Questão 01: | |
SELECT * FROM bolinha where id = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Q1 | |
SELECT * FROM clients; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
oia que coisa legal | |
Q1: | |
SELECT * FROM clients; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define TAM 4 | |
struct fila { | |
int inicio, fim, tamanho; | |
char elemento[TAM]; | |
}Fila; | |
void iniciar (struct fila *F) { | |
printf("Iniciando a Fila"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define TAM 10 | |
struct lista { | |
int n; | |
char elemen[TAM]; | |
}Lista; | |
void iniciaListaVazia(struct lista *L){ L->n = 0;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(int argc, const char * argv[]) { | |
int tamanho; | |
printf("Digite um tamanho para o vetor: "); | |
scanf("%d", &tamanho); | |
//Aqui separamos um espaço em memório dinamicamente do tamanhao digitado pelo usuário |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<wsdl:definitions targetNamespace="http://simples_wb" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://simples_wb" xmlns:intf="http://simples_wb" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<!--WSDL created by Apache Axis version: 1.4 | |
Built on Apr 22, 2006 (06:55:48 PDT)--> | |
<wsdl:types> | |
<schema elementFormDefault="qualified" targetNamespace="http://simples_wb" xmlns="http://www.w3.org/2001/XMLSchema"> | |
<element name="add"> | |
<complexType> | |
<sequence> | |
<element name="a" type="xsd:int"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <cstdlib> | |
#include <math.h> | |
using namespace std; | |
int main() | |
{ | |
int var, *pont; //Forma direta para declarar variáveis do mesmo tipo | |
var = 1000; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define TAM 100 | |
void gerarVetor(int *vetor){ | |
for(int i = 0; i < TAM ; i ++) | |
vetor[i] = i + 1; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define TAM 1000000 | |
void gerarVetor(int *vetor){ | |
for(int i = 0; i < TAM ; i ++) | |
vetor[i] = i + 1; | |
}; |
NewerOlder