I have seen this line of code recently in C language
main(c,p,i)
What this was doing was declaring c
as character and i
, p
as integers. This was working alright but I couldn't understand how. Can anyone help me here?
I have seen this line of code recently in C language
main(c,p,i)
What this was doing was declaring c
as character and i
, p
as integers. This was working alright but I couldn't understand how. Can anyone help me here?