what type of questions arrive in interview over c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to swap two numbers without using third variable?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
What is the difference function call by value & function call by reference?
Explain function?
what is inline function?
Tell us the use of fflush() function in c language?
What are pointers in C?
What is console in c language?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is typedf?