Write a C program to fill a rectangle using window scrolling
Answer / venki
I DON'T KNOW. IF U KNOW TELL THE ANSWER
PLEASEEEEEEE............
| Is This Answer Correct ? | 2 Yes | 4 No |
What is ambagious result in C? explain with an example.
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
swap 2 numbers without using third variable?
char *p="name"; printf(p);
What is declaration and definition in c?
Method Overloading exist in c ?
What are preprocessor directives?
How can you find the day of the week given the date?
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is an auto variable in c?
what is the use of call back function in c?tell me with example