main()
{
int ptr[] = {1,2,23,6,5,6};
printf("%d",&ptr[3]-&ptr[0]);
}
Answer Posted / jithin ramakrishnan
2
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
Write a code on reverse string and its complexity.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What does it mean when a pointer is used in an if statement?
write a c program for swapping two strings using pointer
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is %lu in c?
What are the functions to open and close the file in c language?
What is identifier in c?
Hi can anyone tell what is a start up code?
How do I send escape sequences to control a terminal or other device?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Tell me when would you use a pointer to a function?
Can you tell me how to check whether a linked list is circular?
What is a program flowchart and explain how does it help in writing a program?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?