0
How can I take visual studio for free?
12 Réponses
+ 6
I guess the community edition is already free
+ 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
+ 4
Uninstall that version and download the community version of visual studio 2017
+ 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
+ 4
AKHILPREET SINGH BATRA
It's ok my friend
Happy Coding
+ 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
+ 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
+ 1
Sorry for asking such silly question and thanks for suggesting
+ 1
Thanxx
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.