What is a stream?
No Answer is Posted For this Question
Be the First to Post Answer
Juxtapose the use of override with new. What is shadowing?
print the palindrome numbers in between 0 to n
What are header files and what are its uses in C programming?
How do you write a program which produces its own source code as its output?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
What would be an example of a structure analogous to structure c?
What are preprocessor directives?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
How is a pointer variable declared?
What is a good data structure to use for storing lines of text?