What is the difference between text files and binary files?
No Answer is Posted For this Question
Be the First to Post Answer
what does ‘#include’ mean?
What is meant by int fun const(int a, int b) { .... ... }
how to find greatet of 10 numbers without using array?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
What are qualifiers?
number of times a digit is present in a number
What is the use of in c?
What is Conio.h ?
What does %2f mean in c?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?