In c programming language, how many parameters can be passed to a function ?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
What are the rules for the identifier?
What does the message "automatic aggregate intialization is an ansi feature" mean?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
Is sizeof a keyword in c?
What is volatile
Is it possible to run using programming C for Java Application?
Can 'this' pointer by used in the constructor?
What is a structure in c language. how to initialise a structure in c?
What are Macros? What are its advantages and disadvantages?
What does extern mean in a function declaration?
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).