What is main () in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
difference between object file and executable file
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
write a C code To reverse a linked list
Explain what is the difference between a string and an array?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
Where can I get an ansi-compatible lint?
What are the different types of control structures in programming?
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
What does the function toupper() do?
What is your stream meaning?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }