why programming language C is still used in operating system's
kernel??
Answer / khan abdullah
because this contain the pointer which does not contain by
other prog lang
| Is This Answer Correct ? | 10 Yes | 1 No |
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
What is the scope of static variables in c language?
what do you mean by inline function in C?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
Mention four important string handling functions in c languages .
Who developed c language?
What is the proper way of these job Tell me about there full work
we have a 3litres jug and a 5 litres jug and no measures on them. using these two jugs how can we measure 4 litres of water?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
Can a binary search tree be used as an index? If yes, how? Explain