What is use of integral promotions in c?
No Answer is Posted For this Question
Be the First to Post Answer
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 difference between exit() and _exit() functions?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
#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(); }
How does memset() work in C?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
What is the difference between fread and fwrite function?
What is the right type to use for boolean values in c?
main() { int a; a=++100; printf("%d",a); getch(); }
What is table lookup in c?
Program to find the absolute value of given integer using Conditional Operators
What is a char in c?