What is the use of #include in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can you tell whether a program was compiled using c versus c++?
What is the general form of a C program?
What does %c mean in c?
write a programme to convert temperature from farenheit to celcius?
What are local and global variables?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
Why do we use & in c?
code for quick sort?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
How do you sort filenames in a directory?
What is a structural principle?