c language interview questions & answer
No Answer is Posted For this Question
Be the First to Post Answer
write a own function to compare two strings with out using stringcomparition function?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
What does it mean when a pointer is used in an if statement?
Which driver is a pure java driver
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
Write a C program that reads a series of strings and prints only those ending in "ed"
What is the purpose of Scanf Print, getchar, putchar, function?
What are the advantages and disadvantages of pointers?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
What is a list in c?
Does c have enums?