Is reference used in C?
Answer / bavi
No.Oly cal by value method of passing is used in C.
Also, calling by reference can be achieved thru' Pointers.
| Is This Answer Correct ? | 7 Yes | 2 No |
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
what is the height of tree if leaf node is at level 3. please explain
Is struct oop?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
What is Bitwise Operator and how it works?
What is %d called in c?
Why do we need arrays in c?
Which is better between malloc and calloc?
define function
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
Is c easy to learn?