Answer Posted / vrushali
Hi friends , it possible.
Please chk this simple program:
#include <stdio.h>
int main ()
{
int func1 ()
{
printf ("\n Inside func 1 ");
}
func1 ();
}
O/P : Inside func 1
| Is This Answer Correct ? | 9 Yes | 17 No |
Post New Answer View All Answers
Explain the term printf() and scanf() used in c language?
What is string concatenation in c?
Why double pointer is used in c?
Tell me when is a void pointer used?
What is data type long in c?
Why string is used in c?
Why is structure important for a child?
What is the advantage of a random access file?
What are the primitive data types in c?
What is the -> in c?
Is stack a keyword in c?
Why is sprintf unsafe?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is a good data structure to use for storing lines of text?
What are the features of the c language?