How can I take visual studio for free? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I take visual studio for free?

25th Feb 2019, 10:26 AM
AKHILPREET SINGH BATRA
AKHILPREET SINGH BATRA - avatar
12 Answers
+ 6
I guess the community edition is already free
25th Feb 2019, 10:38 AM
Rstar
Rstar - avatar
+ 6
Its because of pre increment and post increment. In case 1 there is pre increment Means first num will get incremented and then compared In case 2 there is post increment means first the num will be compared and after that it will increment
28th Feb 2019, 4:40 PM
Rstar
Rstar - avatar
25th Feb 2019, 10:39 AM
Rstar
Rstar - avatar
+ 4
Uninstall that version and download the community version of visual studio 2017
25th Feb 2019, 10:52 AM
Rstar
Rstar - avatar
+ 4
I can understand you situation. Better see if there is any free wifi somewhere. Or else ask your some friend who has internet connection Also download those modules that you require. Also the community edition of visual studio is light weight
25th Feb 2019, 4:17 PM
Rstar
Rstar - avatar
+ 4
AKHILPREET SINGH BATRA It's ok my friend Happy Coding
25th Feb 2019, 4:21 PM
Rstar
Rstar - avatar
+ 1
Hi thanks for your reply but in my visual studio 2017 it is saying that your license will expire on March 27,2019.pls tell what I should do
25th Feb 2019, 10:49 AM
AKHILPREET SINGH BATRA
AKHILPREET SINGH BATRA - avatar
+ 1
But it consumes a lot of net like 1.78GB and I have of jio which gives 1.5GB per day what should I do now
25th Feb 2019, 11:03 AM
AKHILPREET SINGH BATRA
AKHILPREET SINGH BATRA - avatar
+ 1
Sorry for asking such silly question and thanks for suggesting
25th Feb 2019, 4:19 PM
AKHILPREET SINGH BATRA
AKHILPREET SINGH BATRA - avatar
+ 1
Thanxx
28th Feb 2019, 5:28 PM
AKHILPREET SINGH BATRA
AKHILPREET SINGH BATRA - avatar
0
Hi, pls will you explain me why this code below prints 1 2 3 4 5 Here,it is, int num =0; while (++num <6) { Console.WriteLine (num); } it Ends But this below program does different like its printing 1 2 3 4 5 6 Here, it is, int num =0; while (num++ < 6) { Console.WriteLine (num); } Pls explain me bro. It's C# language.
28th Feb 2019, 3:39 PM
AKHILPREET SINGH BATRA
AKHILPREET SINGH BATRA - avatar