Explain what is the difference between a string and an array?
No Answer is Posted For this Question
Be the First to Post Answer
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
How will you declare an array of three function pointers where each function receives two ints and returns a float?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
Want to know how to write a C program that 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.
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Write a program to identify if a given binary tree is balanced or not.
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
What does typeof return in c?
How do I declare a pointer to an array?
wt is d full form of c
Explain following declaration int *P(void); and int (*p)(char *a);