char S;
char S[6]= " HELLO";
printf("%s ",S[6]);
output of the above program ?
(0, ASCII 0, I,unpredictable)
Answer Posted / vignesh1988i
unpredictable..............
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are the primitive data types in c?
Why doesnt this code work?
What is a keyword?
Explain high-order and low-order bytes.
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
How can you be sure that a program follows the ANSI C standard?
Is python a c language?
What does *p++ do?
Explain output of printf("Hello World"-'A'+'B'); ?
What is dangling pointer in c?
Which built-in library function can be used to match a patter from the string?
How can I find the modification date of a file?
What is the difference between null pointer and wild pointer?
What does static variable mean in c?
Why does everyone say not to use scanf? What should I use instead?