• Hey Guest,

    We wanted to share a quick update with the community.

    Our public expense ledger is now live, allowing anyone to see how donations are used to support the ongoing operation of the site.

    👉 View the ledger here

    Over the past year, increased regulatory pressure in multiple regions like UK OFCOM and Australia's eSafety has led to higher operational costs, including infrastructure, security, and the need to work with more specialized service providers to keep the site online and stable.

    If you value the community and would like to help support its continued operation, donations are greatly appreciated. If you wish to donate via Bank Transfer or other options, please open a ticket.

    Donate via cryptocurrency:

    Bitcoin (BTC):
    Ethereum (ETH):
    Monero (XMR):
141592653

141592653

TW She/Her
Aug 9, 2020
119
Hey !
I'll have acces to the soon. Somebody has already tried it? It is initially used to boost horses for races. Just wanna have some feedback before trying ;)
 
  • Like
Reactions: puppy9
almost_dead

almost_dead

Arcanist
Aug 7, 2020
465
Code:
#include "stdio.h"

int main () {

int i_array[] = {1,2,3,4,0,0,0,0,0,0} ;
int n_array[] = {0,0,0,0,0,0,0,0,0,0} ;

int *i = &i_array[0] ;
int *n = &n_array[0] ;

printf ( "before 'while' :\t arrays are :\n" );
printf ( " i_array[]\t{%d,%d,%d,%d,.....}\n",i_array[0],i_array[1],i_array[2],i_array[3] );
printf ( " n_array[]\t{%d,%d,%d,%d,.....}\n",n_array[0],n_array[1],n_array[2],n_array[3] );

while (*n++=*i++) printf("%d\t%d\n",i,n);

printf ( "after 'while' :\t arrays are :\n" );
printf ( " i_array[]\t{%d,%d,%d,.....}\n",i_array[0],i_array[1],i_array[2],i_array[3] );
printf ( " n_array[]\t{%d,%d,%d,.....}\n",n_array[0],n_array[1],n_array[2],n_array[3] );

}
 
  • Love
Reactions: I_love_to_bake and 141592653
141592653

141592653

TW She/Her
Aug 9, 2020
119
This is a quick way to copy to arrays. It's clever and beautiful though, I don't see the link with Vincamine ^^
 

Similar threads

PalOnTheSteppe
Replies
2
Views
155
Recovery
BeanCurd
B
elpurp
Replies
2
Views
264
Recovery
etherealgoddess
etherealgoddess
ThePollinator
Replies
3
Views
209
Recovery
NormallyNeurotic
NormallyNeurotic
Kamaainakupua
Replies
0
Views
168
Recovery
Kamaainakupua
Kamaainakupua