What is the difference between strcpy() and memcpy() function in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the benefit of using #define to declare a constant?
What is the difference between %d and %*d in C
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Explain how to reverse singly link list.
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
Read two numbers from keyboard and find maximum of them?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
swap two integer variables without using a third temporary variable?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
0 Answers Aegis, CDAC, Infosys,
What are loops c?
In c language can we compile a program without main() function?
How to add two numbers with using function?