A function can make the value of a variable available to another by
a) declaring the variable as global variable
b) Passing the variable as a parameter to the second function
c) Either of the two methods in (A) and (B)
d) binary stream
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
What is data types?
Explain how can I write functions that take a variable number of arguments?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
Identify the operators that is not used with pointer a. && b. # c. * d. >>
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
What is a nested formula?
Are pointers really faster than arrays?
Where is volatile variable stored?
What is the general form of a C program?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc