Posts

Showing posts from March 24, 2019

Kanton Pontacq

Ehemaliger Kanton Pontacq Region Aquitanien Département Pyrénées-Atlantiques Arrondissement Pau Hauptort Pontacq Auflösungsdatum 29. März 2015 Einwohner 10.338 (1. Jan. 2012) Bevölkerungsdichte 82 Einw./km² Fläche 126,73 km² Gemeinden 12 INSEE-Code 6432 Der Kanton Pontacq war bis 2015 ein französischer Kanton im Arrondissement Pau im Département Pyrénées-Atlantiques und in der Region Aquitanien; sein Hauptort war Pontacq, Vertreter im Generalrat des Départements war zuletzt von 2008 bis 2015 Marie-Pierre Cabanne. Der Kanton war 126,73 km² groß und hatte (2006) 9.518 Einwohner, was einer Bevölkerungsdichte von 75 Einwohnern pro km² entsprach. Gemeinden | Der Kanton setzte sich aus zwölf Gemeinden zusammen: Gemeinde Einwohner Jahr Fläche km² Bevölkerungsdichte Postleitzahl Code INSEE Barzun 73 (2013) –  –  Einw./km² 64530 64097 Espoey 1082 (2013) –  –  Einw./km² 64420

Tanque Iosef Stalin

Image
Tanque Iosef Stalin IS-2 e IS-3. Tipo Carro de combate pesado Local de origem   União Soviética História operacional Em serviço 1943-1970 Utilizadores Coreia do Norte  Cuba   Egito  China   União Soviética Guerras SGM, Revolução Húngara de 1956, Guerra dos Seis Dias e Invasão da Tchecoslováquia Histórico de produção Criador Zhozef Kotin, Nikolay Dukhov Data de criação 1943 (IS-1) 1943 (IS-2) 1944 (IS-3) 1944-45 (IS-4) Fabricante Kirov Factory, UZTM Período de produção 1943-44 (IS-1) 1943–45 (IS-2) 1945–47 (IS-3) 1945–46 (IS-4) Quantidade produzida IS-1: 130 IS-2: 3,854 IS-3: 2,311 IS-4: 250 Especificações (IS-2 modelo 1944) Peso 101 411 lb (46 000 kg) Comprimento 32,6 ft (9,94 m) Largura 10,2 ft (3,11 m) Altura 8,11 ft (2,47 m) Tripulação 4 Blindagem do veículo 1.2–6.3 in (30–160 mm) Armamento primário 1 canhão D25-T de 122 mm (28 rodadas) Ar

Extract specific positions from a char array

Image
6 1 $begingroup$ I have two arrays: char input = "ughIuytLikeretC"; and bool mask = { false, false, false, true, false, false, false, true, true, true, true, false, false, false, true, }; My function takes these two arrays and returns the characters in input whose positions are true in mask such that in this example, the result being ILikeC. #include <stdio.h> #include <stdlib.h> #include <stdbool.h> char *filtArray(char input, bool mask, char *filtered) { int j = 0; int i; for (i = 0; input[i]; i++) { filtered[j] = input[i]; j += mask[i]; } filtered[j] = 0; return filtered; } filtArray will run on billions of "input" strings of constant length and "mask" will be the same for all