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 / mohmedali
1
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
What is an lvalue?
What are the header files used in c language?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
How many bytes are occupied by near, far and huge pointers (dos)?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
write a program to create a sparse matrix using dynamic memory allocation.
What is New modifiers?
How will you delete a node in DLL?
What is the best way to comment out a section of code that contains comments?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Can i use “int” data type to store the value 32768? Why?
What is external variable in c?
What are c preprocessors?
When should a type cast not be used?
What is a macro, and explain how do you use it?