main()
{
int a;
a=++100;
printf("%d",a);
getch();
}
Answer Posted / vennila
error, a value should be initialised
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are void pointers in c?
What is difference between structure and union in c programming?
Explain how can I remove the trailing spaces from a string?
How do you generate random numbers in C?
What is a struct c#?
What is the default value of local and global variables in c?
What is identifier in c?
Explain about the functions strcat() and strcmp()?
What does != Mean in c?
Explain logical errors? Compare with syntax errors.
What is sizeof c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is malloc calloc and realloc in c?
What is scope rule of function in c?
When c language was developed?