how can i print "hello"
Answers were Sorted based on User's Feedback
#include<stdio.h>
main()
{
printf("hello");
}
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / ajithbalaji
Both r wrong
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\"hello\"");
getch();
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / vijay kumar tiwari
#include<iostream.h>
main()
{
cout<<"hello";
}
| Is This Answer Correct ? | 3 Yes | 4 No |
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
When should a type cast not be used?
what are the compilation steps? ( i want inside the compiler )
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
What does node * mean?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
what is call by value and call by reference
can we write a program in c for printf and scanf without using header file stdio.h
What is the general form of function in c?