Answer Posted / diwakar prasad singh
#include<stdio.h>
main()
{
printf("hello");
}
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
Differentiate between a for loop and a while loop? What are it uses?
Can stdout be forced to print somewhere other than the screen?
What is the difference between the expression “++a” and “a++”?
What is the difference between the local variable and global variable in c?
Explain what math functions are available for integers? For floating point?
how can f be used for both float and double arguments in printf? Are not they different types?
Difference between malloc() and calloc() function?
What is self-referential structure in c programming?
What is the acronym for ansi?
What does it mean when the linker says that _end is undefined?
What does emoji p mean?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
I have a varargs function which accepts a float parameter?
Write a program to generate the Fibinocci Series
Can you subtract pointers from each other? Why would you?