Can we change the value of constant variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
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?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
What are local and global variables?
What is the purpose of void in c?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
What is the difference between Printf(..) and sprint(...) ?
Write a C program to convert an integer into a binary string?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the correct declaration of main?
Differentiate between Macro and ordinary definition.
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....