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
What is the difference between struct and typedef struct in c?
In C language, a variable name cannot contain?
What is string in c language?
What is c mainly used for?
What are the advantages of Macro over function?
What is difference between function overloading and operator overloading?
What are data types in c language?
What are reserved words?
What are the different types of objects used in c?
Where are c variables stored in memory?
Is there any possibility to create customized header file with c programming language?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
List the variables are used for writing doubly linked list program.
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
When should a far pointer be used?