char S;
char S[6]= " HELLO";
printf("%s ",S[6]);
output of the above program ?
(0, ASCII 0, I,unpredictable)
Answer Posted / vrushali
The answer is unpredictable....
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What are variables c?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What are conditional operators in C?
How can you read a directory in a C program?
write a program to print largest number of each row of a 2D array
What are pragmas and what are they good for?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
How can I avoid the abort, retry, fail messages?
Explain logical errors? Compare with syntax errors.
How do I use void main?
Write a C program to count the number of email on text
How to write c functions that modify head pointer of a linked list?