Explain how do you list a file’s date and time?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


Is main an identifier in c?

0 Answers  


What is the use of f in c?

0 Answers  


What are the features of c language?

0 Answers  


how many argument we can pas in in a function

25 Answers   CTS,






What is queue in c?

0 Answers  


Explain demand paging.

1 Answers   Agilent,


how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48

1 Answers  


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

0 Answers  


a value that does not change during program execution a) variabe b) argument c) parameter d) none

0 Answers  


Is using exit() the same as using return?

0 Answers  


Explain how can you tell whether two strings are the same?

0 Answers  


Categories