Answer Posted / shobana
it is not a object oreinted language . actually it is a procedure oriented language.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
how many errors in c explain deply
What is break in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
the question is that what you have been doing all these periods (one year gap)
How can I list all of the predefined identifiers?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
List the variables are used for writing doubly linked list program.
What is the difference between call by value and call by reference in c?
Why is c faster?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What are types of functions?
What is a pointer and how it is initialized?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Describe explain how arrays can be passed to a user defined function
#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); }