What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
Answer Posted / vennila
*
**
***
****
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a const pointer in c?
Describe how arrays can be passed to a user defined function
Is c still used?
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
What is an lvalue?
Explain how do you determine whether to use a stream function or a low-level function?
What is string length in c?
What are structure types in C?
What is typedef struct in c?
Should a function contain a return statement if it does not return a value?
How do you print an address?
What is a node in c?
Do you know what are the properties of union in c?
What is the difference between void main and main in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions