Is a house a mass structure?
No Answer is Posted For this Question
Be the First to Post Answer
Are global variables static in c?
Write a program for deleting duplicate elements in an array
What is the difference between procedural and declarative language?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
who will call your main function in c under linux?
What is the importance of c in your views?
Can we assign string to char pointer?
write a own function for strstr
Can a program have two main functions?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
1 232 34543 4567654 can anyone tell me how to slove this c question
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 ].