Skip to content

Instantly share code, notes, and snippets.

struct complex
{
int pre;
float pim;
};
for(i=1;i<=5;i++)
for(j=1;j<=5;j++)
a[i][j] = j + (i - 1) * 5;
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!";
return 0;
}
void functie()
{
return 1;
}
void functie()
{
return 2;
}
namespace functia_unu
{
void functie()
{
return 1;
}
}
namespace functia_doi
{
unsigned int CifrePrime(int n)
{
int suma = 0;
while(n != 0)
{
int prim = 1;
int cifre = n % 10;
#include <iostream>
using namespace std;
int main()
{
int nr = 123;
int cifra;
while(nr !=0)
{
#include <iostream>
using namespace std;
int main() {
int nume_var_int;
float nume_var_float;
double nume_var_double;
char nume_var_char;
bool nume_var_bool;
@paulbalan
paulbalan / test
Created September 26, 2021 19:23
test
livewire(EditCollection::class, ['record' => $collection])
->assertSchemaStateSet([
'fields' => [
[
'type' => 'input',
'data' => [
'label' => 'Invoice',
'required' => true,
],
],