When was c language developed?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to find the smallest of three integers, without using any of the comparision operators.
What is the purpose of ftell?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
In which header file is the null macro defined?
What are different types of pointers?
Why is sizeof () an operator and not a function?
How can variables be characterized?
What is the use of header files?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
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");} }