What is main () in c?
No Answer is Posted For this Question
Be the First to Post Answer
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 ].
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?
What is variable and explain rules to declare variable in c?
Difference between null pointer and dangling pointer?
how to find anagram without using string functions using only loops in c programming
List the difference between a "copy constructor" and a "assignment operator"?
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
What is structure packing ?
Is flag a keyword in c?
How do you use a 'Local Block'?
List some basic data types in c?
What are keywords in c with examples?