Is it possible to run a c program without using main?If yes
HOW??
Answer Posted / valli
in linux while compilation we u mention -nostartfiles it
will work
#include<stdio.h>
abc()
{
printf("hello");
}
| Is This Answer Correct ? | 9 Yes | 13 No |
Post New Answer View All Answers
Explain union. What are its advantages?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What is multidimensional arrays
Can i use βintβ data type to store the value 32768? Why?
What is scanf_s in c?
Explain the use of bit fieild.
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is the use of linkage in c language?
What is null in c?
How to implement a packet in C
Dont ansi function prototypes render lint obsolete?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What are the advantages of using linked list for tree construction?
What is the use of a β β character?
What is the difference between text and binary i/o?