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 difference between getch() and getche()?
How many data structures are there in c?
Which node is more powerful and can handle local information processing or graphics processing?
What is the auto keyword good for?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Are there namespaces in c?
how to swap 2 numbers within a single statement?
How can I access an I o board directly?
Can a variable be both static and volatile in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Can i use “int” data type to store the value 32768? Why?
why we shiuld use main keyword in C