what is the difference between <stdio.h>and "stdio.h"?

Answer Posted / amit

<stdio.h> means it will search in current directories
"stdio.h" means it will search in entire drive. ie current
drive.

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<

1413


What is inheritance in simple words?

623


What are oops functions?

583


which feature are not hold visual basic of oop?

1721


explain sub-type and sub class? atleast u have differ it into 4 points?

1830






How does polymorphism work?

635


What is abstraction example?

616


What are the 3 principles of oop?

616


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2163


What is polymorphism and types?

596


Can destructor be overloaded?

593


What is overriding vs overloading?

580


Can we create object of interface?

601


What is the benefit of oop?

569


What is the full form of oops?

607