What are data structures in c and how to use them?
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
What is a #include preprocessor?
What is the process to generate random numbers in c programming language?
Why do we need functions in c?
What is use of bit field?
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
If I have a char * variable pointing to the name of a function ..
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Why c is called a middle level language?
What is variable in c example?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }