When I tried to go into a security sites I am denied access and a
message appeared saying 'applet not initialize'. How can I rectify this
problem.
No Answer is Posted For this Question
Be the First to Post Answer
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
What are the types of unary operators?
How many main () function we can have in a project?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
write a program to print largest number of each row of a 2D array
What is the difference between union and anonymous union?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is huge pointer in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }