What are linked lists in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to display the frequency of each element in a given array in c language
void main() { int a=1; while(a++<=1) while(a++<=2); }
What does static mean in c?
What does extern mean in a function declaration?
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
How to compare array with pointer in c?
Program to write some contents into a file using file operations with proper error messages.
What is the difference between fread and fwrite function?
What is function in c with example?
What is an expression?
write a program whose output will be- 1 12 123 1234
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)