SyntaxFix
Write A Post
Hire A Developer
Questions
Instead of using
int * p; p = {1,2,3};
we can use
int * p; p =(int[3]){1,2,3};