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);}
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
1 st prob.. this will be an error since b[] have not been
declared.......
if you are nt bothered about the syntax obligations....
then the output will be:
abcd
| Is This Answer Correct ? | 5 Yes | 0 No |
what is the difference between exit() and _exit() functions?
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
What is an example of structure?
What is the use of clrscr?
what value is returned to operating system after program execution?
Why is c called "mother" language?
What is the difference between calloc() and realloc()?
What are enumerated types?
convert 12345 to 54321 withoutusing strig
What are the differences between Structures and Arrays?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason