Answer Posted / ankith.v
to print the statements Repeatedly until the specified
condition is failed
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between array and structure in c?
What are the properties of union in c?
What is the purpose of type declarations?
what are enumerations in C
What are linker error?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Where in memory are my variables stored?
Why is c so important?
What are pointers? What are stacks and queues?
Is that possible to store 32768 in an int data type variable?
What is the use of a ‘ ’ character?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What are qualifiers?
Are global variables static in c?