Answer Posted / puspa
do while loop execute once then check the condition which
is not same for do
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
Explain which function in c can be used to append a string to another string?
Explain what is the benefit of using #define to declare a constant?
Do you know what are the properties of union in c?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Is c compiled or interpreted?
Explain what is the difference between functions getch() and getche()?
how can f be used for both float and double arguments in printf? Are not they different types?
What are the types of macro formats?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Explain what is the advantage of a random access file?
Write a program to swap two numbers without using third variable?
What does main () mean in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Can a program have two main functions?
How can I find the modification date of a file?