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 |
How can I copy just a portion of a string?
What are all different types of pointers in c?
What are the different types of pointers used in c language?
what is c
`write a program to display the recomended action depends on a color of trafic light using nested if statments
difference between function & structure
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
Write a program in c to print * * * * * *******
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What are the standard predefined macros?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Why is it important to memset a variable, immediately after allocating memory to it ?