How to establish connection with oracle database software
from c language?
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What are Storage Classes in C ?
32 Answers CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
Explain how can I convert a number to a string?
In scanf h is used for
How Many Header Files in c?
Explain is it better to bitshift a value than to multiply by 2?
Why doesnt the call scanf work?
What is return type in c?
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?
What is the use of #include in c?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }