What is the purpose of & in scanf?
No Answer is Posted For this Question
Be the First to Post Answer
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
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
which of 'arrays' or 'pointers' are faster?
What are preprocessor directives?
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; }
Can include files be nested?
what is the importance of spanning tree?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What are dangling pointers? How are dangling pointers different from memory leaks?
What are the different types of control structures?
What is a macro in c preprocessor?
How can you determine the size of an allocated portion of memory?