why programming language C is still used in operating system's
kernel??
Answer Posted / khan abdullah
because this contain the pointer which does not contain by
other prog lang
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Does free set pointer to null?
What is the difference between #include
What is a macro?
Write a program on swapping (100, 50)
Do variables need to be initialized?
What is pointer in c?
all c language question
Is it possible to pass an entire structure to functions?
Explain the difference between structs and unions in c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Explain the difference between ++u and u++?
Do you know the purpose of 'register' keyword?
What are the scope of static variables?
What is %s and %d in c?