What is the difference between fread and fwrite function?
No Answer is Posted For this Question
Be the First to Post Answer
How can I handle floating-point exceptions gracefully?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
write a program to print data of 5 five students with structures?
What is #define used for in c?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
what is c
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
What do you mean by invalid pointer arithmetic?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
What is structure of c program?
Why static variable is used in c?
how to print value of e(exp1)up to required no of digits after decimal?