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
How can I handle floating-point exceptions gracefully?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How can I remove the leading spaces from a string?
Do you know the use of 'auto' keyword?
What functions are used for dynamic memory allocation in c language?
Explain how do you declare an array that will hold more than 64kb of data?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is the value of uninitialized variable in c?
what do the 'c' and 'v' in argc and argv stand for?
Is c is a low level language?
What are the types of data files?
Write a program to reverse a given number in c?
code for quick sort?
how can I convert a string to a number?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array