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 |
how can use subset in c program and give more example
What will be the output of x++ + ++x?
What is ## preprocessor operator in c?
What is a stream in c programming?
wt is d full form of c
why do we use pointer instead directly acessing the data?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
What is the use of keyword VOLATILE in C?
What is the main difference between calloc () and malloc ()?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type