What are the 5 elements of structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between c and python?
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?
How to implement call back functions ?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Why does notstrcat(string, "!");Work?
Is it acceptable to declare/define a variable in a c header?
Can we assign integer value to char in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
write a program structure to find average of given number
Why is C language being considered a middle level language?