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
how logic is used
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
How will you delete a node in DLL?
Why header file is used in c?
Explain what’s a signal? Explain what do I use signals for?
Define and explain about ! Operator?
Write a program for finding factorial of a number.
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is variable declaration and definition in c?
What is function and its example?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
How does #define work?
Why is c called c not d or e?
List the variables are used for writing doubly linked list program.
Is c is a low level language?