klimi
and if you pass it value its argument
Roxifλsz 🇱🇹
klimi
What do you mean?
code for the final exam
klimi
here buddy needs it to pass the school
B K Sachin
anyone ,can you explain? What is library functions? In your own knowledge.
klimi
anyone ,can you explain? What is library functions? In your own knowledge.
It is a function (or a class foor OOP) that is pulled into your program from a collection, available on the system your program runs on. Usually (not always) these collections are physically realised as files, with a given extension (.dll, .so, .jar, .a, .lib..) each containing tens of functions/classes. Also the way functions are “pulled into” differs: functions may be physically copied into the executable (static linkage) or loaded in memory at run time (called dynamic linkage in some contexts), by way of an OS component (loader) or of the interpreter itself. Some runtimes (e.g. java) can allow you to pull them from remote network repositories (scary). Most - if not all - modern environments are equipped with so-called “standard libraries”, which are part of the official description of the language (and sometimes referred to as “the runtime”) , which are sometimes very extensive. (e.g the standard C library, C++’s stl - standard template library). In addition, one can avail himself of third-party libraries, or develop his own.
Roxifλsz 🇱🇹
code for the final exam
I don't have any code for such a thing
klimi
nevermind
klimi
klimi
Thanks friend.
youre welcome
klimi
25 marks?
klimi
markers?
klimi
im sorry
klimi
oral test?
klimi
you wanted to cheat?
klimi
thats unfortunate
klimi
I'm really happy
klimi
i don't know how you could cheat in oral exam xD
klimi
then how you could lost 25 marks
Chris Ashley
Sure thanks
Otumian
hello people... please just to clear my mind.. Is there a way a number could be a multiple of 4, 100 and 400? what about in the ascending order
Otumian
ashley, hi
klimi
wha
klimi
change teacher then
Otumian
yeah..
Otumian
yeah.. we did it
Otumian
but i am still unsure..
Meg_griffin
Ok how
Otumian
😂
Nessuno
Thanks, Can i ask a question about It?
Otumian
of course you may.. ask
Nessuno
i just cannot publish something is protected by copyright, but can i send links??
Otumian
I am not that sure on the piracy policies of this but i believe a admin will sort you out
Nessuno
Thanks
Anonymous
Hi
Anonymous
Hii
Anonymous
Question Can I make a function with strings? string menu1 () { return "one" ;}
Anonymous
If I call menu1 it should print "one", is all I'm trying to do..
Anonymous
Instead of the string, I'm getting 1 when I run it. So it's evaluating as true..
Akshit
@Otumian_dioratikos All multiples of 400 such as 400, 800, 1200, 1600 and so on, are multiples of 4, 100 and 400.
Anonymous
Whats the right way to do that? Other than typing it on my phone..
Anonymous
Can I send a pic?
Anonymous
Pastebin, Got it
Anonymous
https://pastebin.com/RELcPQVh
Anonymous
KENECHUKWU: Please is there any Android app or computer software I can use to remove stickers, emoji or watermark from a saved picture and get the original picture?
Anonymous
Hi
Mihail
https://pastebin.com/RELcPQVh
You aren't calling it as a function
Anonymous
You aren't calling it as a function
Thanks for the reply. How can I call it as a function?
Ludovic 'Archivist'
It is not on POSIX.1 but on POSIX 2001.1 that it is threadsafe
Ludovic 'Archivist'
For example, if a stupid customer runs on Solaris, errno may not br thread safe here
Defragmented
is there any 3d tree structure that can self balance without full rebuild (kD, R, ...) when objects it tries to track are moving(possibly to a compact group)? 1d binary tree does it by rotating it nodes, so that it never needs full rebuild. i want similar property in 3d
BinaryByter
how about an RBS of RBS' ?
Defragmented
BinaryByter
its a binary tree that self balances
BinaryByter
wait looks like that acronym doesnt exist
Defragmented
may be you mean red-black binary tree
BinaryByter
no
BinaryByter
i think that there is a huge mixup in my lingo
BinaryByter
xD
BinaryByter
but what i meant were those balancing trees
Defragmented
i think red black tree is self balancing but anyway, do you mean a tree of trees? how is is suppose to work? i dont think i've ever seen such a structure before
BinaryByter
you store a tree in each node of a tree
BinaryByter
and then you need to find a fitting equality operation
Defragmented
is there a name for this structure? or how is it suppose to work? lets say a x=0..100;y=0...100 field first node contains x=0-50 at the left child and x=51-100 at the right child, right? what will be stored in the left child? (a tree, that solves what?)
BinaryByter
you would have to define an operation for that
BinaryByter
But I don't think that trees are exactly made to store things in 3 dimensions
BinaryByter
they are made for you to dump in all your data and then to find quickly some data