What's the right way to use errno?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
What does struct node * mean?
how can write all 1to 100 prime numbers using for loop,if and break ?
What is memmove?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What is restrict keyword in c?
What do you understand by friend-functions? How are they used?
why we use "include" word before calling the header file. is there any special name for that include??????
How can I write functions that take a variable number of arguments?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
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;