what is the mean of c languages.
Answer / s
c is nothing but a language consisting of small set of a
programming module like function , data type design to
perform a dedicated task.
| Is This Answer Correct ? | 6 Yes | 2 No |
What is the purpose of sprintf() function?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
how can i get output like this? 1 2 3 4 5 6
What is the difference between int main and void main?
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
what is the use of a array in c
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
which one is highest Priority in c? a)=,b)+,c)++,d)==
What are derived data types in c?
read a number & print all its devisors using c-program?
There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }