Click here to Skip to main content
15,795,398 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: GetComputerObjectNameW Win API is failing Pin
rajneshmalik26-Mar-21 0:27
rajneshmalik26-Mar-21 0:27 
AnswerRe: GetComputerObjectNameW Win API is failing Pin
Randor 18-Feb-21 23:43
professional Randor 18-Feb-21 23:43 
QuestionUnexpected output in array Pin
Member 1507028617-Feb-21 19:43
Member 1507028617-Feb-21 19:43 
AnswerRe: Unexpected output in array Pin
CPallini17-Feb-21 21:22
mveCPallini17-Feb-21 21:22 
GeneralRe: Unexpected output in array Pin
Greg Utas18-Feb-21 1:02
mveGreg Utas18-Feb-21 1:02 
GeneralRe: Unexpected output in array Pin
CPallini18-Feb-21 11:11
mveCPallini18-Feb-21 11:11 
Questioncode analysis Pin
Member 1507028614-Feb-21 21:29
Member 1507028614-Feb-21 21:29 
AnswerRe: code analysis Pin
Richard MacCutchan14-Feb-21 23:16
mveRichard MacCutchan14-Feb-21 23:16 
You need to read the declaration right to left:
C++
char *const p=str;
  |  |  |   |
  |  |  |   +- the variable p
  |  |  +----- is a constant
  |  +---------pointer
  +------------to a character

So const here applies to the pointer p and not to the data that it is pointing to. That would be:
C++
const char* p=str; // p is a pointer to a character constant.

GeneralRe: code analysis Pin
Member 1507028615-Feb-21 23:57
Member 1507028615-Feb-21 23:57 
AnswerRe: code analysis Pin
Greg Utas15-Feb-21 1:52
mveGreg Utas15-Feb-21 1:52 
GeneralRe: code analysis Pin
Member 1507028616-Feb-21 0:02
Member 1507028616-Feb-21 0:02 
Questioncallbacks in c Pin
Member 1506971810-Feb-21 6:16
Member 1506971810-Feb-21 6:16 
AnswerRe: callbacks in c Pin
Greg Utas10-Feb-21 6:34
mveGreg Utas10-Feb-21 6:34 
AnswerRe: callbacks in c Pin
k505410-Feb-21 7:35
mvek505410-Feb-21 7:35 
QuestionFunction similar to printf for software UART, without the need for a large temporary buffer? Pin
arnold_w8-Feb-21 12:20
arnold_w8-Feb-21 12:20 
AnswerRe: Function similar to printf for software UART, without the need for a large temporary buffer? Pin
Mircea Neacsu8-Feb-21 13:00
Mircea Neacsu8-Feb-21 13:00 
GeneralRe: Function similar to printf for software UART, without the need for a large temporary buffer? Pin
arnold_w9-Feb-21 8:39
arnold_w9-Feb-21 8:39 
GeneralRe: Function similar to printf for software UART, without the need for a large temporary buffer? Pin
Mircea Neacsu9-Feb-21 9:22
Mircea Neacsu9-Feb-21 9:22 
AnswerRe: Function similar to printf for software UART, without the need for a large temporary buffer? Pin
CPallini8-Feb-21 21:11
mveCPallini8-Feb-21 21:11 
GeneralRe: Function similar to printf for software UART, without the need for a large temporary buffer? Pin
arnold_w9-Feb-21 9:04
arnold_w9-Feb-21 9:04 
GeneralRe: Function similar to printf for software UART, without the need for a large temporary buffer? Pin
CPallini9-Feb-21 20:57
mveCPallini9-Feb-21 20:57 
QuestionChanging gamma with multiple display setup Pin
Valentinor6-Feb-21 2:23
Valentinor6-Feb-21 2:23 
AnswerRe: Changing gamma with multiple display setup Pin
Richard MacCutchan6-Feb-21 2:30
mveRichard MacCutchan6-Feb-21 2:30 
GeneralRe: Changing gamma with multiple display setup Pin
Valentinor6-Feb-21 2:55
Valentinor6-Feb-21 2:55 
GeneralRe: Changing gamma with multiple display setup Pin
Richard MacCutchan6-Feb-21 3:10
mveRichard MacCutchan6-Feb-21 3:10 

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.