The variables are
int sum=10,SuM=20;
these are same or different?
Answer Posted / 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 |
Post New Answer View All Answers
What is 'bus error'?
What is #define in c?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is volatile, register definition in C
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Can a void pointer point to a function?
What are enums in c?
in iso what are the common technological language?
Why do we use c for the speed of light?
What are the characteristics of arrays in c?
how can f be used for both float and double arguments in printf? Are not they different types?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is the basic structure of c?
what will be maximum number of comparisons when number of elements are given?
What does %c do in c?