What are the different types of data structures in c?
What are examples of structures?
Juxtapose the use of override with new. What is shadowing?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
What is cohesion and coupling in c?
How can I swap two values without using a temporary?
What are c header files?
Explain output of printf("Hello World"-'A'+'B'); ?
How do you write a program which produces its own source code as its output?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
how to print a statement in c without use of console statement ,with the help of if statement it should print
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,