A collection of functions,calls,subroutines or other data
a) library
b) header files
c) set of files
d) textfiles
No Answer is Posted For this Question
Be the First to Post Answer
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
write a prgram of swapping with 2 valiables
Write a program that his output * *** *****
What is "Hungarian Notation"?
How do you sort filenames in a directory?
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
What does p mean in physics?
What does void main () mean?
What is structure and union in c?
Is int a keyword in c?
Can we write a program without main() function?