Why we use void main in c?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by Recursion Function?
Explain the priority queues?
why do we use pointer instead directly acessing the data?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is the use of the #include directive?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
what is op? for(c=0;c=1000;c++) printf("%c",c);
What are the benefits of c language?
Describe the difference between = and == symbols in c programming?
A stack can be implemented only using array?if not what is used?
Explain what is a stream?
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?