533 views

1 Answer

Related questions

0 votes
0 votes
0 answers
1
gmrishikumar asked Jan 2, 2019
850 views
#include<stdio.h>int main ( ){ int demo ( ); // What is this and what does it do? demo ( ); (*demo) ( );}int demo ( ){ printf("Morning");}