Why does everyone say not to use scanf? What should I use instead?
No Answer is Posted For this Question
Be the First to Post Answer
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
What's the total generic pointer type?
Can we compile a program without main() function?
What are the ways to a null pointer can use in c programming language?
Explain what does a function declared as pascal do differently?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
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;
difference between object file and executable file
Write programs for String Reversal & Palindrome check
What is malloc return c?
Where local variables are stored in c?