What are the __date__ and __time__ preprocessor commands?
Is stack a keyword in c?
what is a function method?give example?
All technical questions
why we are using semicolon at the end of printh statment
how to add two numbers without using arithmetic operators?
what is mallloc()?how it works?
Explain what is the difference between far and near ?
Dont ansi function prototypes render lint obsolete?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
what is use of loop?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
Explain how many levels deep can include files be nested?