What is scanf () in c?
No Answer is Posted For this Question
Be the First to Post Answer
can we change the default calling convention in c if yes than how.........?
Is c high or low level?
Explain what is the difference between text files and binary files?
Is malloc memset faster than calloc?
Toggle nth bit in a given integer - num
How can we see the Expanded source code and compiled code for our source program in C?
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){ .... }
Are pointers integers in c?
What is the right type to use for boolean values in c?
What is modeling?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
Why is a semicolon (;) put at the end of every program statement?