What are local variables c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you be sure that a program follows the ansi c standard?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is the difference between typeof(foo) and myFoo.GetType()?
Where static variables are stored in c?
What is the use of #include in c?
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
Is exit(status) truly equivalent to returning the same status from main?
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.
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
What are the usage of pointer in c?
How can I find the modification date of a file?
What is #ifdef ? What is its application?