Posts by Rafael • 1 point
2 posts
-
-1
votes1
answer50
viewsQ: I have a question about this code snippet - Scanf
Hello, would you like a help with this code snippet, could someone explain to me what it does exactly ? (Especially the part %*1[ n]) scanf(%[^\n]%*1[\n], string);
-
0
votes1
answer156
viewsQ: I have a problem trying to use an increment in the printf - C function
Can anyone help me understand why the output of this code is: 24 23 and not 23 23 ??? int a =23; printf("%d %d",a, a++); }…