How do you list a file’s date and time?
No Answer is Posted For this Question
Be the First to Post Answer
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
What are register variables? What are the advantage of using register variables?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
What does %d do?
Write code for atoi(x) where x is hexadecimal string.
What are lookup tables in c?
Explain what are compound statements?
write a program for fibonaci series by using while loop in c?
Give me the code of in-order recursive and non-recursive.
Explain how can I manipulate strings of multibyte characters?
Why c is called a middle level language?