why ordinary variable store the later value not the initial
Answer / sandeep
When Ordinary variable's value changed after initialisation
it's memory will filled with the new value
| Is This Answer Correct ? | 1 Yes | 1 No |
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
What do you mean by c what are the main characteristics of c language?
can we implement multi-threads in c.
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
what is the different between data structure and data type?
What are pointers? Why are they used?
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.