a value that does not change during program execution
a) variabe
b) argument
c) parameter
d) none
No Answer is Posted For this Question
Be the First to Post Answer
the operator for exponencation is a.** b.^ c.% d.not available
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
how to count no of words,characters,lines in a paragraph.
what is a pointer
4 Answers Bank Of America, TCS,
how to find the largest element of array without using relational operater?
What 'lex' does?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
What is a null pointer in c?
What is return type in c?
How do we make a global variable accessible across files? Explain the extern keyword?
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.