52.write a “Hello World” program in “c” without using a
semicolon?
53.Give a method to count the number of ones in a 32 bit number?
54.write a program that print itself even if the source file
is deleted?
55.Given an unsigned integer, find if the number is power of 2?
Answer Posted / swastisundar bose
52.
#include<stdio.h>
void main(){
if("Hello World")
{
}
}
| Is This Answer Correct ? | 17 Yes | 20 No |
Post New Answer View All Answers
What is hungarian notation? Is it worthwhile?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Differentiate between #include<...> and #include '...'
Can we change the value of constant variable in c?
What are the types of data types and explain?
Explain how to reverse singly link list.
Why functions are used in c?
Explain threaded binary trees?
What is the difference between a free-standing and a hosted environment?
Tell us bitwise shift operators?
What is null pointer in c?
What are identifiers and keywords in c?
What is a wrapper function in c?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80