What is the explanation for the dangling pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
State two uses of pointers in C?
Why static is used in c?
How do I send escape sequences to control a terminal or other device?
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
Where local variables are stored in c?
Differentiate between the = symbol and == symbol?
What is declaration and definition in c?
How do you define a string?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
What would be an example of a structure analogous to structure c?
What extern c means?