What are the types of i/o functions?
No Answer is Posted For this Question
Be the First to Post Answer
How can I read data from data files with particular formats?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
what is the use of a array in c
how can i get this by using for loop? * ** * **** * ******
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
Explain what is gets() function?
What is variable initialization and why is it important?
Is there anything like an ifdef for typedefs?
What is the purpose of 'register' keyword in c language?
How is actual parameter different from the formal parameter?
What is call by value in c?