What are the functions to open and close file in c language?
No Answer is Posted For this Question
Be the First to Post Answer
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
How does variable declaration affect memory?
Explain the difference between strcpy() and memcpy() function?
difference between memcpy and strcpy
What is union and structure?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
How do you search data in a data file using random access method?
How can I do graphics in c?
change to postfix a/(b+c*d-e)
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
Explain the use of bit fieild.