A program to allow an input operand and operator from the operator and read on the display and output operand.
No Answer is Posted For this Question
Be the First to Post Answer
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
what is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
What are identifiers c?
Can a pointer be volatile 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 a pointer
4 Answers Bank Of America, TCS,
What are c preprocessors?
write a program for the normal snake games find in most of the mobiles.
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Why functions are used in c?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
Why can arithmetic operations not be performed on void pointers?