how to write hello word without using semicolon at the end?
Answer Posted / vikas
int main(void)
{
if(printf("hello world"))
}
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
How can I implement a delay, or time a users response, with sub-second resolution?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
How to find a missed value, if you want to store 100 values in a 99 sized array?
What are global variables and explain how do you declare them?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Can you write the algorithm for Queue?
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
Is it possible to pass an entire structure to functions?
When should volatile modifier be used?
Why do we use int main?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
How can I list all of the predefined identifiers?
Where static variables are stored in memory in c?
What is stack in c?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)