Draw a flowchart to produce a printed list of all the students
over the age of 20 in a class .The input records contains the
name and age of students. Assume a sentinel value of 99 for
the age field of the trailer record
No Answer is Posted For this Question
Be the First to Post Answer
how to compare two strings without using strcmp() function??
array of pointer pointer to array pointer to pointer
What are pointers in C?
while initialization of array why we use a[][2] why not a[2][]...?
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
What is Conio.h ?
Is it better to use malloc() or calloc()?
which one is highest Priority in c? a)=,b)+,c)++,d)==
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
related to rdbms query .
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}