answersLogoWhite

0

What else can I help you with?

Related Questions

How do you write a c program without using main function?

You cannot create a program with the extension .exe without the function main. You can create a dll which does not even use main. WinApi uses another main function but it's still a main function. Main function is entry point for your program, no entry point no program.Write a progrmme in c with out using a main function. #include #define decode(s,t,u,m,p,e,d)m##s##u##t #define begin decode(a,n,i,m,a,t,e) int begin() { printf("HELLO") }


How do you call a function in the main function?

name ( parameters )example:int main (int argc, char **argv){int i;for (i=0; i


What has the author Neal Pronek written?

Neal Pronek has written: 'Hermit crabs' -- subject(s): Hermit crabs, Hermit crabs as pets 'Tropical fish' -- subject(s): Tropical fish, Aquariums, Juvenile literature, Aquarium fishes 'Oscars' -- subject(s): Cichlids


How can we write a code after main closed in c language?

Register the function(s) containing the code with atexit.


How do you print a word before main function?

Do you mean something like this: static void Print (const char *s) { puts (s); } int main (void) { Print ("a word"); return 0; }


What does the s stand for in the cell cycle?

S stands for Synthesis in the cell cycle.


What has the author Luke S Jadamec written?

Luke S. Jadamec has written: 'Biological field techniques for Chionoecetes crabs' -- subject(s): Biology, Field work, Snow crab, Southern Tanner crab, Tanner crabs


Who are the first monkey?

crabs evolved into monkeys in the late 1800's


What has the author Donald Crabs written?

Donald Crabs has written: 'California theatre index, 1971' -- subject(s): Theaters, Directories, College theater


What has the author Guy N Smith written?

Guy N. Smith has written: 'The Druid connection' 'The sucking pit' -- subject(s): Fiction in English 'Cannibal cult' 'Alligators' 'The origin of the crabs' -- subject(s): Fiction in English 'Crabs on the rampage' 'Killer crabs' -- subject(s): Fiction in English 'Caracal' 'Warhead' -- subject(s): Horror/Science Fiction 'Night of the crabs' -- subject(s): Fiction in English 'Doomflight' 'Phobia' 'The undead' 'Locusts' -- subject(s): Fiction in English 'Crabsmoon' 'Bats out of hell' -- subject(s): Horror Fiction in English 'Cannibals' 'The legend of SleepyHollow' -- subject(s): Children's stories


How you call a function in main?

name ( parameters )example:int main (int argc, char **argv){int i;for (i=0; i


What is the difference between the calling function and called function?

Function calling is when you call a function yourself in a program. While function invoking is when it gets called automatically.For example, consider this programstruct s{int a,b,s;s(){a=2;b=3;}void sum(){s=a+b;}};void main(){struct s obj; //line 1obj.sum(); // line 2}Here, when line 1 is executed, the function(constructor, i.e. s) is invoked.When line 2 is executed, the function sum is called.