79318648

Date: 2024-12-30 21:30:28
Score: 1
Natty:
Report link

You need to dereference it with '*', use '{'/'}' vs. '['/']', and then you will be printing the ascii value of 'x' = 121. Here is the code: #include <stdio.h> int main() { char name[4] = {'x', '%', 'Q', 0}; printf("%d\n", *name); }

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Andrew