Q1. Describe the difference between the program testing and debugging.
Q2. Write down a program to swap two numbers by using pointers.
Q3. What do you mean by unsigned integer constant? Illustrate the importance of declaring a constant as unsigned?
Q4. Are the given two statements the same?
char str[6] = "Kicit" ;
char *str = "Kicit" ;
Q5. Develop your own function to compare and contrast the two strings of same size.
Q6. Describe the use of randomize( ) and srand( ) function?