What is a substring in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does the error message "DGROUP exceeds 64K" mean?
why do we use pointer instead directly acessing the data?
a=5 a=a++/++a
Convert the following expression to postfix and prefix (A+B) * (D-C)
Is there sort function in c?
Why void is used in c?
Are the expressions * ptr ++ and ++ * ptr same?
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
Where in memory are my variables stored?
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); }
difference between loading and linking