How can I call a function with an argument list built up at run time?
No Answer is Posted For this Question
Be the First to Post Answer
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); }
What is the c language function prototype?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Should I learn c before c++?
Write a program to check palindrome number in c programming?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Can a variable be both constant and volatile?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
How can I split up a string into whitespace-separated fields?
What do you mean by Recursion Function?