The variables are
int sum=10,SuM=20;
these are same or different?
Answer Posted / swati gour
both are different things because sum & SUM are different
variable in memory.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Is sizeof a keyword in c?
In a header file whether functions are declared or defined?
What is structure padding and packing in c?
Which is best book for data structures in c?
Is main an identifier in c?
What are the advantages of c language?
Explain the meaning of keyword 'extern' in a function declaration.
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Explain bitwise shift operators?
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
What is New modifiers?
What is the use of putchar function?
State the difference between x3 and x[3].
how to write a c program to print list of fruits in alpabetical order?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?