What is main () in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

0 Answers  


Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?

1 Answers   Oracle,


What is variable and explain rules to declare variable in c?

0 Answers  


Difference between null pointer and dangling pointer?

7 Answers   GE, Wipro,


how to find anagram without using string functions using only loops in c programming

1 Answers   Mind Tree, TCS,






List the difference between a "copy constructor" and a "assignment operator"?

0 Answers   Accenture,


Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx

4 Answers  


What is structure packing ?

2 Answers   HP,


Is flag a keyword in c?

0 Answers  


How do you use a 'Local Block'?

0 Answers   Ericsson,


List some basic data types in c?

0 Answers  


What are keywords in c with examples?

0 Answers  


Categories