What is a program flowchart and explain how does it help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of unary operators?
Write a program to find given number is even or odd without using any control statement.
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
whats the use of header file in c?
What is register variable in c language?
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
What is volatile keyword in c?
Tell us bitwise shift operators?
Combinations of fibanocci prime series
If you know then define #pragma?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }