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 / deepanjali
infinte loop
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
a c code by using memory allocation for add ,multiply of sprase matrixes
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Why c language is called c?
What is a void pointer in c?
Write a program of advanced Fibonacci series.
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What are the disadvantages of a shell structure?
List some of the static data structures in C?
What is array in C
Why do we use header files in c?
What is type qualifiers?
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
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What is the mean of function?
What is the difference between strcpy() and memcpy() function in c programming?