Answer Posted / srinath goud
void main returns 'no value'.
Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
What functions are in conio h?
What is wrong in this statement?
What is formal argument?
When should a far pointer be used?
What are the types of bitwise operator?
What is pointer to pointer in c language?
What are different types of pointers?
What is extern c used for?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
How to write c functions that modify head pointer of a linked list?
What is static function in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
How do you write a program which produces its own source code as output?
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
What are file streams?