Is c is a middle level language?
No Answer is Posted For this Question
Be the First to Post Answer
When should a far pointer be used?
wat s the meaning of (int *)p +4;
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Describe the modifier in c?
what will be maximum number of comparisons when number of elements are given?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
How to set a variable in the environment list?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
Write a code to generate divisors of an integer?
What is meant by preprocessor in c?
What is #include stdio h?
What is c standard library?