how can f be used for both float and double arguments in printf? Are not they different types?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
Explain about the constants which help in debugging?
What are the types of pointers in c?
What is the purpose of & in scanf?
How do you print an address?
WHAT IS C?
What is structure padding and packing in c?
What is a buffer in c?
Can you please explain the difference between syntax vs logical error?
change to postfix a/(b+c*d-e)
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
Differentiate Source Codes from Object Codes