I have to call a function from main function like:
void main()
...
...
...
printf("Starting function- saveSubscriber");
status = saveSubscriber(io_ctr,
i_pRec,
/*&ufpEsn,*/ **/* Change #6*/**
iov_pmktbuf,
&i_pCntRec, **/* Change #23 */**
iv_pActvBuf->pr );
...
...
}
Is putting comments beside arguments (/* Change #6*/ and /* Change #23*/) okay? That is, will the code compile and will it function the same as when there are no comments.