C Programming :: Functions
-
Which of the following statements are correct about the program?
#include
int main() { printf("%p\n", main()); return 0; } -
There is a error in the below program. Which statement will you add to remove it?
#include
-
Which of the following statements are correct about the function?
long fun(int num) { int i; long f=1; for(i=1; i f = f * i; return f ; }