write a program to insert an element at the specified position in the given array in c language
5 26252What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
3 8520write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
7 14518write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
7 344971) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
TCS,
4660
Explain the difference between strcpy() and memcpy() function?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is size of union in c?
What is the sizeof () operator?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
Explain what are binary trees?
please explain every phase in the "SDLC" in the dotnet.
What is volatile c?
Explain how does free() know explain how much memory to release?
Which is more efficient, a switch statement or an if else chain?
Is there any data type in c with variable size?
Why does everyone say not to use gets?
What is this infamous null pointer, anyway?
Explain zero based addressing.
What are file streams?