can anyone proide me reading material on
svit00ef27@yahoo.com please thanx in advance
Answer / abhimanyu kumar vatsa
As per question "svit00ef27@yahoo.com" is a e-mail ID and
to read the material on it you should have the password of
this ID.
| Is This Answer Correct ? | 4 Yes | 2 No |
Hai why 'c' is the middle language
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
which is faster execution: loops or recursion?
Why does everyone say not to use scanf? What should I use instead?
What is the difference between far and near in c?
List some applications of c programming language?
why program counter is 16 bit?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
the data type used for unlimited value in c and how to do this program
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail