how many errors in c explain deply
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between c and c++?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
what is a static function
How many loops are there in c?
What 'lex' does?
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
What are structure types in C?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is the difference between single charater constant and string constant?
How can I increase the allowable number of simultaneously open files?