Differentiate abs() function from fabs() function.
what are bit fields in c?
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
Program to find the sum of digits of a given number until the sum becomes a single digit
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the difference between array and pointer?
to convert a string without using decrement operater and string functions
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
How does sizeof know array size?
How the processor registers can be used in C ?
Write a program to print prime nums from 1-20 using c programing?