How can my program discover the complete pathname to the executable from which it was invoked?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
When is a “switch” statement preferable over an “if” statement?
What is the size of empty structure in c?
Write the control statements in C language
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is time complexity c?
Why isn't any of this standardized in c? Any real program has to do some of these things.
diff .between strcture and union
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6