saving . . . saved names <- c command has been deleted. names <- c command has been hidden .
names <- c command
Title
Question
<span style="display: inline !important; float: none; background-color: rgb(255, 255, 255); color: rgb(37, 37, 37); font-family: sans-serif; font-size: 13.93px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;">names <- c(“Mahi”,”Sourav”,”Azhar”, </span>

“Sunny”,”Pataudi”,”Dravid”) 

<pre class="GNKRCKGCGSB" id="rstudio_console_output" style="font-family: 'Lucida Console'; font-size: 10pt !important; outline: none; border: none; word-break: break-all; margin: 0px; -webkit-user-select: text; white-space: pre-wrap !important; line-height: 15px; color: rgb(0, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: -webkit-left; text-indent: 0px; text-transform: none; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);" tabindex="0"><span><span class="GNKRCKGCASB ace_constant" style="color: rgb(197, 6, 11);">unexpected input in "names <- c(“"</span></span></pre>

<sub></sub><sup></sup><strike></strike>


R Introduction-to-basics-of-R 02-03 min 10-20 sec 30-04-20, 7:21 p.m. meghna_bhatia

Answers:

Please check your syntax. The quotes in your command are not grammatical correct from R programming point of view. 
Please try typing this: 
names <- c("A", "B", "C", "D")
30-04-20, 7:32 p.m. sudhakarst


Log-in to answer to this question.