What is local and global variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
what are the compilation steps? ( i want inside the compiler )
Can stdout be forced to print somewhere other than the screen?
What are comments and how do you insert it in a C program?
without a terminator how can we print a message in a printf () function.
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Why we write conio h in c?
Is c an object oriented programming language?
What is #error and use of it?
Are there namespaces in c?
Write a program to print ASCII code for a given digit.
Is there any possibility to create customized header file with c programming language?