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
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What is memory leak in c?
How many header files are in c?
What is #include called?
How do you list a file’s date and time?
How can I remove the trailing spaces from a string?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Describe the order of precedence with regards to operators in C.
What 'lex' does?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is the difference between far and near ?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Explain how does free() know explain how much memory to release?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Where static variables are stored in memory in c?