write a program to insert an element at the specified position in the given array in c language
5 26054What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
3 8338write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
7 14309write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
7 342051) 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,
4603
How many levels deep can include files be nested?
What is a volatile keyword in c?
What does %2f mean in c?
What are enumerated types?
Why is c still so popular?
What is the use of pointers in C?
What is variable and explain rules to declare variable in c?
Explain what math functions are available for integers? For floating point?
Write a program for Overriding.
How do you define structure?
How is null defined in c?
What is the difference between the expression “++a” and “a++”?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is wrong in this statement? scanf(“%d”,whatnumber);
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?