Answer Posted / vivek satasia
IT IS SUCH A VARIABLE WHICH IS NOT MODIFIED BY ITS PROGRAM
BUT IT CAN BE MODIFIED OUTSIDE PROGRAM ENVIRONMENT.
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is extern storage class in c?
Why do some versions of toupper act strangely if given an upper-case letter?
provide an example of the Group by clause, when would you use this clause
What is zero based addressing?
What do you mean by command line argument?
What is string function c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What does stand for?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is void main () in c?
What are qualifiers?
what are the 10 different models of writing an addition program in C language?
How can I implement a delay, or time a users response, with sub-second resolution?
Why shouldn’t I start variable names with underscores?