0

I got a file like this. '''main(x,y,z,p){//some code.here}''' I tried to output them, I got 1 for x, and random values for the rest So how do i understand this code? what dose x,y,z,p mean? And what is.the type of them?

54138qqqq
  • 29
  • 4
  • 1
    The `main` function has only [two valid prototypes](https://stackoverflow.com/questions/2108192/what-are-the-valid-signatures-for-cs-main-function) -- you need to pick one of them. – costaparas Feb 09 '21 at 11:51
  • Looks like some confused attempt of "Code Golf" where the programmer relies on non-standard compiler extensions. – Lundin Feb 09 '21 at 12:49

1 Answers1

-2

That is not valid c function declaration. But if you mean what does parameter that is passed means.

x,y,z,x variables stand for some random data assigned to them based on the context of where it is called.

CoffeDev
  • 244
  • 2
  • 11