The variables are
int sum=10,SuM=20;
these are same or different?
Answers were Sorted based on User's Feedback
Answer / sanjay kumar gupta
both are different because it is in c language.it is a case
sensitive language.sum & SUM(capital) both are different
variable.there are two location in the memory 1 for sum and
other for SUM.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / swati gour
both are different things because sum & SUM are different
variable in memory.
| Is This Answer Correct ? | 4 Yes | 0 No |
What is the scope of static variables?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
what is difference between ANSI structure and C99 Structure?
How can you allocate arrays or structures bigger than 64K?
What is C++
What does 3 periods mean in texting?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What math functions are available for integers? For floating point?
What are extern variables in c?
can v write main() { main(); } Is it true?
what is calloc and malloc?