What are qualifiers and modifiers c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the hexidecimal number of 4100?
What is typedef example?
What is a const pointer, and how does it differ from a pointer to a const?
What is the purpose of ftell?
Is it fine to write void main () or main () in c?
why we need function pointers?
Explain Doubly Linked Lists?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
code for bubble sort?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is undefined behavior?