In c language can we compile a program without main() function?
No Answer is Posted For this Question
Be the First to Post Answer
How can I insert or delete a line (or record) in the middle of a file?
How are 16- and 32-bit numbers stored?
Is main is user defined function?
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
whitch value return void main?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
By using C language input a date into it and if it is right?
How to get string length of given string in c?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
Is an array parameter is always "by reference" ?