There is a number and when the last digit is moved to its
first position the resultant number will be 50% higher than
the original number.Find the number?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
how to write palindrome program?
what are you see during placement time in the student.
0 Answers Goldman Sachs, TCS, Tech Solutions,
Is it possible to have a function as a parameter in another function?
What is declaration and definition in c?
How will you allocate memory to a double pointer ?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
write a program for the normal snake games find in most of the mobiles.
What is d'n in c?
Write a program to find whether the given number is prime or not?
How many main () function we can have in a project?
What is external variable in c?