Whether there can be main inside another main?If so how does
it work?
Answer Posted / qq
int main()
{ /*main();*/
printf("Thant's it");
}
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What functions are used in dynamic memory allocation in c?
What is the heap?
What is default value of global variable in c?
Write a code to generate divisors of an integer?
What are structures and unions? State differencves between them.
What are the advantages and disadvantages of pointers?
Why do some versions of toupper act strangely if given an upper-case letter?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
given post order,in order construct the corresponding binary tree
Explain the difference between structs and unions in c?
Why c is faster than c++?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is meant by 'bit masking'?