What are near, far and huge pointers?
No Answer is Posted For this Question
Be the First to Post Answer
What is Bitwise Operator and how it works?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
Write a program in C to reverse a number by recursive function?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
When should a type cast not be used?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
What is the use of the restrict keyword?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
YBJBU6
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is a program flowchart and how does it help in writing a program?