How do you list a file’s date and time?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how does flowchart help in writing a program?
What is ambagious result in C? explain with an example.
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
void main() { int i=5; printf("%d",i++ + ++i); }
Is it acceptable to declare/define a variable in a c header?
What is #define?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
What is the use of putchar function?
What is new line escape sequence?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????