comment using TODO and FIXME

PHOTO EMBED

Tue Sep 05 2023 14:26:17 GMT+0000 (Coordinated Universal Time)

Saved by @tkvenki #c

int do_complex_ops(int,int);

int main(void)
{



int x=0; /*THis is a variable x*/
int y=0; /*This is a variable y*/
int sum =0;

sum = do_complex_ops(x,y);


}


int do_complex_ops(int a,int b)
{
    /*TODO: Currently a STUB. Actual function to replace this*/

    /*FIXME: Need to fix this implementation*/
}
content_copyCOPY