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 |
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
What are the disadvantages of c language?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
What does 1f stand for?
What is sizeof array in c?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What is the use of getchar functions?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
hi , please send me NIC written test papers to sbabavalli@gmail.com
write a program to print calender using for loop.