char S;
char S[6]= " HELLO";
printf("%s ",S[6]);
output of the above program ?
(0, ASCII 0, I,unpredictable)
Answer Posted / fazlur
null is the answer.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What do you mean by a local block?
What is the difference between malloc() and calloc() function in c language?
difference between native and cross compilers
What does %2f mean in c?
What is the scope of static variable in c?
What is meant by int main ()?
What is the best organizational structure?
What is the process to generate random numbers in c programming language?
Difference between constant pointer and pointer to a constant.
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Explain zero based addressing.
All technical questions
Explain which function in c can be used to append a string to another string?
What are the c keywords?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff