How does selection sort work in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I avoid the abort, retry, fail messages?
How will you allocate memory to a double pointer ?
Differentiate between new and malloc(), delete and free() ?
What are the disadvantages of a shell structure?
Explain what is a const pointer?
how can i get output like this? 1 2 3 4 5 6
What are the types of unary operators?
What are logical errors and how does it differ from syntax errors?
Code for calculating square root without using library function, of math.h
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
WAP – represent a char in binary format
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above