What are c header files?
No Answer is Posted For this Question
Be the First to Post Answer
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
write a program to remove duplicate from an ordered char array? in c
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
Explain why can’t constant values be used to define an array’s initial size?
Can you subtract pointers from each other? Why would you?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What is the acronym for ansi?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
C program to find all possible outcomes of a dice?
what do you mean by enumeration constant?
What is calloc()?