How can you read a directory in a C program?
No Answer is Posted For this Question
Be the First to Post Answer
what do you mean by defining a variable in our c code?
when to use : in c program?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
what is the difference between declaration and definition of a variable or function ?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
Is double link list a linear data structure? If Yes, Why?If No, Why?
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
What is the size of enum in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.