Write a program to print fibonacci series without using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
What is nested structure with example?
What is extern storage class in c?
What are dangling pointers in c?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
A program to allow an input operand and operator from the operator and read on the display and output operand.
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 Answers ABC Infotech, ADP, College School Exams Tests, Kovair,
What is a far pointer in c?
what is the disadvantage of using macros?
How do I send escape sequences to control a terminal or other device?
While(1) { } when this loop get terminate is it a infinite loop?