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 |
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
related proverb of "dont count your chicken before it hatches"
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
What is ## preprocessor operator in c?
what is the difference between NULL('\0') and 0?
What is logical error?
Explain what does it mean when a pointer is used in an if statement?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Expand the following LKB BKL FFG
What are the two types of structure?