What is dangling pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between the = symbol and == symbol?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
In C programming, what command or code can be used to determine if a number of odd or even?
What are enums in c?
Is Exception handling possible in c language?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
What is the general form of #line preprocessor?
how is the examination pattern?
What is cohesion and coupling in c?
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 global variables?