what is d programming language?
Answers
Answered by
1
Answer:
progamming language is a language used to give instructions to a computer to perform different operations in a step by step manner
Answered by
3
Answer:
D is a general-purpose programming language with static typing, systems-level access, and C-like syntax. With the D Programming Language, write fast, read fast, and run fast.
your code here
void main()
{
import std.algorithm, std.conv, std.stdio;
"Starting program".writeln;
// Sort a constant declaration at Compile-Time
enum a = [ 3, 1, 2, 4, 0 ];
static immutable b = sort(a);
// Print the result _during_ compilation
pragma(msg, text("Finished compilation: ", b));
}
Hope it helps . Can u plz mark me as Brainliest .
Its By Bad....
Similar questions