What are derived data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can you dynamically allocate memory in C?
What is the difference between array and pointer?
Can one function call another?
What is wrong with this statement? Myname = 'robin';
Is python a c language?
why we are using semicolon at the end of printh statment
Explain the difference between #include "..." And #include <...> In c?
What happens if header file is included twice?
main is a predefined or user define function if user defined why? if predefined whay?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
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)
Explain what is the benefit of using enum to declare a constant?