what are the files which are automatically opened when a c
file is executed?
Answers were Sorted based on User's Feedback
Answer / j j ramesh / ap / mca / jjcet
.exe and .obj files are open
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / om
stdin ,stdout, strcpy copies the data from one string to
another...
memcpy copies the data's memory...
| Is This Answer Correct ? | 2 Yes | 3 No |
Why can’t we compare structures?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Explain what are reserved words?
Are enumerations really portable?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Can include files be nested? How many levels deep can include files be nested?
Explain what are bus errors, memory faults, and core dumps?
What is %lu in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
write a proram to reverse the string using switch case?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402