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
teste |
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 <string.h> | |
struct cliente{ | |
char nome[20]; | |
float numeroConta; | |
float saldo; | |
}; |
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
-- phpMyAdmin SQL Dump | |
-- version 4.8.0 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Host: 127.0.0.1 | |
-- Generation Time: 04-Maio-2018 às 19:23 | |
-- Versão do servidor: 10.1.31-MariaDB | |
-- PHP Version: 5.6.35 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) | |
-- | |
-- Host: localhost Database: test | |
-- ------------------------------------------------------ | |
-- Server version 5.5.5-10.1.31-MariaDB | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
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
http://rextester.com <- online live coworking with compiler | |
https://codeshare.io/ <- online live coworking text editor | |
https://coderpad.io/demo <- the best, 30min free trial |
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
"Ta Funfando": { | |
"prefix": "funfa", | |
"body": [ | |
"console.log('ta funfando');" | |
], | |
"description": "for test in console output" | |
}, | |
"Console Log": { | |
"prefix": "cl", |
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 pilhaSize 10 | |
void criapilha (void) { | |
t = 0; | |
} | |
void empilha (char y) { | |
pilha[t++] = y; | |
} |
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
create table ldesk.opor_oportunidade( | |
id_oportunidade INTEGER, | |
titulo VARCHAR(100), | |
valor number(38,2), | |
situacao VARCHAR2(2), | |
DATA_INCLUSAO TIMESTAMP WITH TIME ZONE, | |
USUARIO_INCLUSAO VARCHAR2(50), |
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
create table LDESK.CM_OPORTUNIDADE_ETAPA( | |
ID_ETAPA VARCHAR2(50) CONSTRAINT CM_OPORTUN_ETAPA_ID_NN NOT NULL, | |
ID_LICENCA INTEGER CONSTRAINT CM_OPORTUN_ETAPA_LICENCA_NN NOT NULL, | |
TITULO VARCHAR2(200) CONSTRAINT CM_OPORTUN_ETAPA_TITULO_NN NOT NULL, | |
ORDEM INTEGER CONSTRAINT CM_OPORTUN_ETAPA_ORDEM_NN NOT NULL, | |
CASO_AUTO VARCHAR2(1) DEFAULT 'N' CONSTRAINT CM_OPORTUN_ETAPA_CASO_AUTO_NN NOT NULL, | |
CONFLITO_INTERESSE VARCHAR2(1) DEFAULT 'N' CONSTRAINT CM_OPORTUN_ETAPA_CONFLITO_NN NOT NULL, | |
DATA_INCLUSAO TIMESTAMP WITH TIME ZONE, | |
USUARIO_INCLUSAO VARCHAR2(50), | |
DATA_ALTERACAO TIMESTAMP WITH TIME ZONE, |
OlderNewer