Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Instant Grammar Checker - Correct all grammar errors and enhance your writing

What's The REAL Secret To First Date Success With a Woman? Click Here To Find Out

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

29,957 questions

39,172 answers

573 users

How to add two numbers in D

1 Answer

0 votes
import std.stdio;

void main() {

    int x = 10;
    int y = 25;

    int z = x + y;

    writeln(z);
}



/*
run:

35

*/

 


Protect Your Privacy - Download VPN


answered Dec 9, 2022 by avibootz

Related questions

1 answer 20 views
20 views asked Dec 9, 2022 by avibootz
1 answer 19 views
1 answer 18 views
18 views asked Dec 10, 2022 by avibootz
1 answer 27 views
27 views asked Oct 20, 2022 by avibootz
1 answer 37 views
...