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 many types of operators are there in c?
Why C language is a procedural language?
Are enumerations really portable?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Where define directive used?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
explain how do you use macro?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
How are strings stored in c?
Explain the properties of union. What is the size of a union variable
What are pointers?
What is function and its example?
Subtract Two Number Without Using Subtraction Operator