How many bytes are occupied by near, far and huge pointers (dos)?
No Answer is Posted For this Question
Be the First to Post Answer
What is an endless loop?
String concatenation
Can a variable be both static and volatile in c?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
what is the difference between structural,object based,object orientd programming languages?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
Explain how do you override a defined macro?
What are the 5 elements of structure?
Explain what is a const pointer?
What is the difference b/w Structure & Array?