Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
Explain what is a const pointer?
Are the expressions * ptr ++ and ++ * ptr same?
What does == mean in texting?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
biggest of two no's with out using if condition statement
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Place the #include statement must be written in the program?
What is the use of header?
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
How do you generate random numbers in C?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that