What is diffrance between declaration and defination of a variable or function
Answer Posted / nagarjuna reddy
once a variable is defined it'l never change through entire
program.
but declaration of a variable can be changed as per our
requirement.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is c language & why it is used?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is graph in c?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Does * p ++ increment p or what it points to?
What does calloc stand for?
What is void main () in c?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Is it possible to have a function as a parameter in another function?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is 02d in c?
What are the ways to a null pointer can use in c programming language?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is the advantage of an array over individual variables?
How can you increase the size of a dynamically allocated array?