What are the types of i/o functions?
No Answer is Posted For this Question
Be the First to Post Answer
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
pgm to find middle element of linklist(in efficent manner)
Explain how can a program be made to print the name of a source file where an error occurs?
What are function pointers? Provide an example.
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
what does ‘#include’ mean?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
What is pointer to pointer in c?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.