Linked lists -- can you tell me how to check whether a linked list is circular?
Write a program to print "hello world" without using a semicolon?
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
wtite a program that will multiply two integers in recursion function
no consistent academics. how to answer the 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 ].
What does s c mean in text?
Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .
why should i select you?
Explain what is a program flowchart and explain how does it help in writing a program?