Whether there can be main inside another main?If so how does
it work?
Answer Posted / gprabha
#include<stdio.h>
void main()
{
printf("main()");
main();
getch();
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What are global variables?
What does void main return?
Is there a way to switch on strings?
Why isn't it being handled properly?
What is string concatenation in c?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Define Array of pointers.
Why is %d used in c?
What does calloc stand for?
using for loop sum 2 number of any 4 digit number in c language
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Is it valid to address one element beyond the end of an array?
What is character constants?