int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answer Posted / anu
203040
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is calloc in c?
What are the types of data files?
Is there a way to jump out of a function or functions?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Why does the call char scanf work?
Explain how can you restore a redirected standard stream?
What is difference between && and & in c?
What kind of structure is a house?
Explain how do you search data in a data file using random access method?
What is the difference between %d and %i?
Explain the difference between malloc() and calloc() function?
Explain what is gets() function?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Differentiate between ordinary variable and pointer in c.