Answer Posted / guest
#include<stdio.h>
main()
{
printf("hai");
}
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
What is difference between stdio h and conio h?
What is a void pointer? When is a void pointer used?
List the different types of c tokens?
What are two dimensional arrays alternatively called as?
Do pointers store the address of value or the actual value of a variable?
Who invented b language?
What is the difference between class and object in c?
What is omp_num_threads?
Can we assign string to char pointer?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What is difference between %d and %i in c?
What is difference between constant pointer and constant variable?
What is the full form of getch?
What is a pragma?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol