how can we print hellow world programme without using semicolon
Answers were Sorted based on User's Feedback
Answer / akbar
#include<stdio.h>
int main()
{
printf("Hello World
");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rohit kakade
#include<stdio.h>
#include<conio.h>
void main(void)
{
while(printf("HellO")==0)
getch();
}
| Is This Answer Correct ? | 1 Yes | 4 No |
what is the difference between embedded c and turbo c ?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is the newline escape sequence?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
Write down the program to sort the array.
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?