What is main void in c?
when to use : in c program?
Are global variables static in c?
Who invented bcpl language?
write a c program for swapping two strings using pointer
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
How does struct work in c?
What is the difference between array and pointer in c?
What is masking?
What's a good way to check for "close enough" floating-point equality?
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;
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
What is the scope of static variables?