what are the languages used in c#?
Answers were Sorted based on User's Feedback
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
Why do u use # before include in a C Progam?
how we do lcm of two no using c simple if while or for statement
Tell us the use of fflush() function in c language?
What is difference between structure and union in c?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
Can 'this' pointer by used in the constructor?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..