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
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
What is a rvalue?
Are pointers integer?
What are the different types of control structures?
How can I generate floating-point random numbers?
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???
How to implement call back functions ?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
what type of errors are checked during compilation
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.