Click here to Skip to main content
15,887,027 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: All in - pointer declaration Pin
jmaida12-Dec-22 8:57
jmaida12-Dec-22 8:57 
GeneralRe: All in - pointer declaration Pin
Greg Utas12-Dec-22 5:42
professionalGreg Utas12-Dec-22 5:42 
GeneralRe: All in - pointer declaration Pin
0x01AA12-Dec-22 9:03
mve0x01AA12-Dec-22 9:03 
GeneralRe: All in - pointer declaration Pin
Greg Utas12-Dec-22 9:38
professionalGreg Utas12-Dec-22 9:38 
GeneralRe: All in - pointer declaration Pin
jeron112-Dec-22 5:52
jeron112-Dec-22 5:52 
GeneralRe: All in - pointer declaration Pin
k505412-Dec-22 5:54
mvek505412-Dec-22 5:54 
GeneralRe: All in - pointer declaration Pin
den2k8812-Dec-22 20:40
professionalden2k8812-Dec-22 20:40 
GeneralRe: All in - pointer declaration Pin
0x01AA12-Dec-22 6:05
mve0x01AA12-Dec-22 6:05 
I prefer
Type* p;
And this only because my compiler gives a wrning when I don't use a parameter in a method:
void Method(char x, char* y)
To get rid of the warning I need to do e.g.this
void Method(char x, char* /*y*/)

On the other hand if I would do something like this (what I'm not doing ...)

const char *a= "a", *b= "b";
Then I get angry because the language itself is not what I would name 'consistent' Laugh | :laugh:
GeneralRe: All in - pointer declaration Pin
Mircea Neacsu12-Dec-22 6:21
Mircea Neacsu12-Dec-22 6:21 
GeneralRe: All in - pointer declaration Pin
trønderen12-Dec-22 6:48
trønderen12-Dec-22 6:48 
GeneralRe: All in - pointer declaration Pin
Mircea Neacsu12-Dec-22 6:51
Mircea Neacsu12-Dec-22 6:51 
GeneralRe: All in - pointer declaration Pin
honey the codewitch12-Dec-22 8:41
mvahoney the codewitch12-Dec-22 8:41 
GeneralRe: All in - pointer declaration Pin
trønderen12-Dec-22 11:40
trønderen12-Dec-22 11:40 
GeneralRe: All in - pointer declaration Pin
den2k8812-Dec-22 20:42
professionalden2k8812-Dec-22 20:42 
GeneralRe: All in - pointer declaration Pin
Rage12-Dec-22 21:13
professionalRage12-Dec-22 21:13 
GeneralRe: All in - pointer declaration Pin
den2k8812-Dec-22 21:36
professionalden2k8812-Dec-22 21:36 
GeneralRe: All in - pointer declaration Pin
Rage13-Dec-22 1:17
professionalRage13-Dec-22 1:17 
GeneralRe: All in - pointer declaration Pin
den2k8813-Dec-22 2:07
professionalden2k8813-Dec-22 2:07 
GeneralRe: All in - pointer declaration Pin
honey the codewitch12-Dec-22 14:21
mvahoney the codewitch12-Dec-22 14:21 
GeneralRe: All in - pointer declaration Pin
Mircea Neacsu12-Dec-22 14:28
Mircea Neacsu12-Dec-22 14:28 
GeneralRe: All in - pointer declaration Pin
jschell12-Dec-22 10:44
jschell12-Dec-22 10:44 
GeneralRe: All in - pointer declaration Pin
trønderen12-Dec-22 12:03
trønderen12-Dec-22 12:03 
GeneralRe: All in - pointer declaration Pin
jschell13-Dec-22 10:27
jschell13-Dec-22 10:27 
GeneralRe: All in - pointer declaration Pin
Gary R. Wheeler12-Dec-22 12:44
Gary R. Wheeler12-Dec-22 12:44 
GeneralRe: All in - pointer declaration Pin
Greg Utas12-Dec-22 13:17
professionalGreg Utas12-Dec-22 13:17 

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.