How to access or modify the const variable in c ?
Answer Posted / skp
@Answer #7 - Answer of #6 is correct.
In Dev C++ the output is as answer #6.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What are different storage class specifiers in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is assert and when would I use it?
Why is c called a mid-level programming language?
When should volatile modifier be used?
What is sizeof return in c?
Using which language Test cases are added in .ptu file of RTRT unit testing???
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Are the variables argc and argv are local to main?
Is there a way to switch on strings?
How many loops are there in c?
How do you list a file’s date and time?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What is the difference between void main and main in c?