What does %2f mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Explain is it valid to address one element beyond the end of an array?
write a C code To reverse a linked list
What are the string functions? List some string functions available in c.
Describe explain how arrays can be passed to a user defined function
1) 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
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
Is that possible to store 32768 in an int data type variable?
Explain what is the general form of a c program?
Explain what are reserved words?