How can I dynamically allocate arrays?
please explain every phase in the "SDLC" in the dotnet.
Bit swapping
What are structure members?
what is difference between procedural language and functional language ?
In which header file is the null macro defined?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
different between overloading and overriding
Explain how do you search data in a data file using random access method?
What is the use of the #include directive?
Is it fine to write void main () or main () in c?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }