How can I recover the file name given an open stream?
No Answer is Posted For this Question
Be the First to Post Answer
What is gets() function?
what does ‘segmentation violation’ mean?
what is ANSI and ISO
Explain pointers in c programming?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
What is an volatile variable?
What is malloc calloc and realloc in c?
Is reference used in C?
Write a pro-gramme to determine whether the number is even or odd?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
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
What is wild pointer in c with example?