WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
No Answer is Posted For this Question
Be the First to Post Answer
Is stack a keyword in c?
What is strcmp in c?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
What is c language and why we use it?
Without Computer networks, Computers will be half the use. Comment.
i have a written test in tomorrow
What is action and transformation in spark?
Is it possible to run a c program without using main?If yes HOW??
What are identifiers in c?
Can you define which header file to include at compile time?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol