What is break in c?
No Answer is Posted For this Question
Be the First to Post Answer
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
How is actual parameter different from the formal parameter?
What is a structural principle?
write a proram to reverse the string using switch case?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
without using control structures and control structures find the max and min of given 2 nos
How many levels of pointers can you have?
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 code for getting the output as * ** ***
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
WHAT IS ABSTRACT DATA TYPE