Click here to Skip to main content
15,881,248 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Random numbers Pin
Calin Negru3-Jun-20 20:50
Calin Negru3-Jun-20 20:50 
GeneralRe: Random numbers Pin
CPallini3-Jun-20 20:53
mveCPallini3-Jun-20 20:53 
QuestionReturn Statement in C| when I used print just after if condition it gave me "Equal multiple times" but when i used return statement it game me single time? Pin
Member 148492461-Jun-20 10:17
Member 148492461-Jun-20 10:17 
AnswerRe: Return Statement in C| when I used print just after if condition it gave me "Equal multiple times" but when i used return statement it game me single time? Pin
jeron11-Jun-20 10:45
jeron11-Jun-20 10:45 
AnswerRe: Return Statement in C| when I used print just after if condition it gave me "Equal multiple times" but when i used return statement it game me single time? Pin
Richard MacCutchan1-Jun-20 20:54
mveRichard MacCutchan1-Jun-20 20:54 
QuestionI could not understand loop testcondition understanding| rest program runs fine Pin
Member 1484924631-May-20 8:55
Member 1484924631-May-20 8:55 
AnswerRe: I could not understand loop testcondition understanding| rest program runs fine Pin
Greg Utas31-May-20 9:40
professionalGreg Utas31-May-20 9:40 
AnswerRe: I could not understand loop testcondition understanding| rest program runs fine Pin
Richard MacCutchan31-May-20 21:58
mveRichard MacCutchan31-May-20 21:58 
The for statement breaks down as three individual expressions:
C++
for(set; while; do) :
//
// set : perform this or these expressions first: multiple expressions must be separated by commas
// while : repeat the loop while this expression equates to true
// do : perform this or these expressions at the end of each loop

Note that any of these expressions (or indeed all of them) may be blank.
In your code the expression in the while part is name[i], which means while name[i] is true, or rather while name[i] is not equal to zero. Strings in C are (or should be) terminated with a zero character (NULL), so the expression will be true as long as the character in question is not the terminating NULL.
QuestionPassing an entry from an array as argument Pin
Calin Negru31-May-20 8:35
Calin Negru31-May-20 8:35 
AnswerRe: Passing an entry from an array as argument Pin
Greg Utas31-May-20 9:36
professionalGreg Utas31-May-20 9:36 
GeneralRe: Passing an entry from an array as argument Pin
Calin Negru31-May-20 9:58
Calin Negru31-May-20 9:58 
GeneralRe: Passing an entry from an array as argument Pin
Greg Utas31-May-20 10:25
professionalGreg Utas31-May-20 10:25 
GeneralRe: Passing an entry from an array as argument Pin
Calin Negru31-May-20 20:33
Calin Negru31-May-20 20:33 
QuestionReading a text file from a remote machine in LAN using c, c++, vc++ Pin
manoharbalu27-May-20 23:51
manoharbalu27-May-20 23:51 
GeneralRe: Reading a text file from a remote machine in LAN using c, c++, vc++ Pin
Richard MacCutchan28-May-20 0:24
mveRichard MacCutchan28-May-20 0:24 
AnswerRe: Reading a text file from a remote machine in LAN using c, c++, vc++ Pin
CPallini28-May-20 1:25
mveCPallini28-May-20 1:25 
SuggestionRe: Reading a text file from a remote machine in LAN using c, c++, vc++ Pin
David Crow28-May-20 2:47
David Crow28-May-20 2:47 
GeneralRe: Reading a text file from a remote machine in LAN using c, c++, vc++ Pin
CPallini28-May-20 10:08
mveCPallini28-May-20 10:08 
QuestionGet expanded macros from precompiler and insert as comments in source code? Pin
arnold_w27-May-20 20:14
arnold_w27-May-20 20:14 
AnswerRe: Get expanded macros from precompiler and insert as comments in source code? Pin
Richard MacCutchan27-May-20 22:44
mveRichard MacCutchan27-May-20 22:44 
GeneralRe: Get expanded macros from precompiler and insert as comments in source code? Pin
arnold_w27-May-20 23:23
arnold_w27-May-20 23:23 
GeneralRe: Get expanded macros from precompiler and insert as comments in source code? Pin
Richard MacCutchan27-May-20 23:34
mveRichard MacCutchan27-May-20 23:34 
QuestionHow to mount an ISO file with disc type - CD/DVD Pin
Member 1001484126-May-20 5:04
Member 1001484126-May-20 5:04 
AnswerRe: How to mount an ISO file with disc type - CD/DVD Pin
jeron126-May-20 5:21
jeron126-May-20 5:21 
QuestionProblem with pointers memory allocation on the same memory area Pin
Member 959508024-May-20 20:37
Member 959508024-May-20 20:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.