What is getch() function?
No Answer is Posted For this Question
Be the First to Post Answer
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
What is equivalent to ++i+++j?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is difference between main and void main?
How can I convert integers to binary or hexadecimal?
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 there any data type in c with variable size?
Do you know null pointer?
to find the closest pair
What are the 5 types of inheritance in c ++?
What is scanf_s in c?
write a program that print itself even if the source file is deleted?