Write a program that accept anumber in words
No Answer is Posted For this Question
Be the First to Post Answer
What are types of preprocessor in c?
Can i use “int” data type to store the value 32768? Why?
How to declare pointer variables?
in which language c language is written?
What functions are in conio h?
With the help of using classes, write a program to add two numbers.
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
Describe the difference between = and == symbols in c programming?
What are the different types of objects used in c?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
Please list all the unary and binary operators in C.
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none