Which of these functions is safer to use : fgets(), gets()? Why?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the concept of "dangling pointers" in C.
What do you mean by keywords in c?
a 'c' program to tell that the set of three coordinates lie on a same line
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
What are types of preprocessor in c?
what is c
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Write a program with dynamically allocation of variable.
What language is windows 1.0 written?
Which built-in library function can be used to match a patter from the string?