How can I handle floating-point exceptions gracefully?
No Answer is Posted For this Question
Be the First to Post Answer
What is new line escape sequence?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
write a program that explain #define and # undef directive
Explain how can I open a file so that other programs can update it at the same time?
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
What are the preprocessor categories?
How do I declare a pointer to an array?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
difference between memcpy and strcpy
Write a program to print factorial of given number without using recursion?