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 are different storage class specifiers in c?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is pointer and structure in c?
What is a static variable in c?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is printf () in c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Why is c called "mother" language?
What is the process to create increment and decrement stamen in c?
Why are algorithms important in c program?
Are pointers integers in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Where can I get an ansi-compatible lint?
Write a program to swap two numbers without using the third variable?