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 to print "Hi World" without using semi colon?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
can we print any string without using terminator?
What is void main () in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
How do I access command-line arguments?
What is the best way of making my program efficient?
c program to manipulate x=1!+2!+3!+...+n! using recursion
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
marge linklist
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How can a process change an environment variable in its caller?