How can I find the day of the week given the date?
No Answer is Posted For this Question
Be the First to Post Answer
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
Explain how can you be sure that a program follows the ansi c standard?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Write a program to find minimum between three no.s whithout using comparison operator.
What is external and internal variables What is dynamic memory allocation what is storage classes in C
Why can't we initialise member variable of a strucutre
write a program to print largest number of each row of a 2D array
What is the difference between procedural and functional programming?
write a program to remove duplicate from an ordered char array? in c
How can I write functions that take a variable number of arguments?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is the difference b/w main() in C language and main() in C++.