what are the static variables
Answer Posted / guest
enum
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What does %c mean in c?
What are the different data types in C?
Is there a way to switch on strings?
What is a union?
Describe wild pointers in c?
Explain the difference between structs and unions in c?
Can we replace the struct function in tree syntax with a union?
Why we use break in c?
What is wrong in this statement?
Describe the difference between = and == symbols in c programming?
What is pass by reference in c?
Can an array be an Ivalue?
What is malloc return c?
.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; }