Answer Posted / abhradeep chatterjee
Shubham Singh's Code is Wrong. Please follow my code for
output.
Is This Answer Correct ? | 5 Yes | 10 No |
Post New Answer View All Answers
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
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?
Explain how can I manipulate strings of multibyte characters?
What is table lookup in c?
What are pointers?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is local and global variable in c?
What is the default value of local and global variables in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Explain how do you print an address?
Are local variables initialized to zero by default in c?
What is wild pointer in c with example?
write an algorithm to display a square matrix.
Explain what are multibyte characters?