Can a pointer be volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
Who is the main contributor in designing the c language after dennis ritchie?
Can anyone tell what is stack overflow? what precaution we should take?
How can I find out if there are characters available for reading?
What does %d do?
what is differnence b/w macro & functions
What are the different categories of functions in c?
C program to perform stack operation using singly linked list
Explain the properties of union.
Write a program of advanced Fibonacci series.
How do I swap bytes?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986