Can a pointer point to null?
what is the difference between strcpy() and memcpy() function?
Can you please explain the scope of static variables?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
Is c compiled or interpreted?
What is the explanation for cyclic nature of data types in c?
Explain the use of #pragma exit?
write a own function to compare two strings with out using stringcomparition function?
What are the advantages of using macro in c language?
write a program to copy the string using switch case?
What are enumerated types?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?