Explain what are the different data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is declaration and definition in c?
write a method for an array in which it can display the largest n next largest value.
How can you determine the size of an allocated portion of memory?
What is the size of a union variable?
Is a house a mass structure?
Which sorting algorithm is the best?
HOW DO YOU HANDLE EXCEPTIONS IN C?
What is union and structure in c?
What is a volatile keyword in c?
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 default value of global variable in c?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?