Post New Answer View All Answers
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is hungarian notation? Is it worthwhile?
What are the c keywords?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How do we open a binary file in Read/Write mode in C?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is volatile variable in c with example?
How do you convert strings to numbers in C?
Which is better pointer or array?
What is a list in c?
Is it possible to initialize a variable at the time it was declared?
What is dynamic variable in c?
Is main is user defined function?
What is a loop?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year