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);
}
write a c program to convert fahrenheit to celsius?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
If the size of int data type is two bytes, what is the range of signed int data type?
What is a segmentation fault?
What is c method?
write a program to display the frequency of each element in a given array in c language
How can you increase the size of a statically allocated array?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What is the most efficient way to count the number of bits which are set in a value?
There seem to be a few missing operators ..
who developed c and why he developed c?
Which is better pointer or array?