main()
{char a[10]={1,2,3,4,5,6};int x;
for(x=0;x<4;x++){ b[x]=x+'a';}
printf("%s",b);}
Answer Posted / lucky
it gives compilation error bcoz b is not defined
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What is the use of define in c?
What is equivalent to ++i+++j?
Why enum is used in c?
What are the 32 keywords in c?
How do you determine the length of a string value that was stored in a variable?
What is the difference between functions abs() and fabs()?
Is c pass by value or reference?
What is auto keyword in c?
How do c compilers work?
List out few of the applications that make use of Multilinked Structures?
Why do we write return 0 in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Where is c used?
What is use of pointer?