In how much time you will write this c program?
Prime nos from 1 to 1000
Answers were Sorted based on User's Feedback
write a program to swap two variables a=5 , b= 10 without using third variable
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
how to find the size of the data type like int,float without using the sizeof operator?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Can a pointer be static?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
what is ANSI and ISO
What are the benefits of c language?
what do you mean by inline function in C?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
What is dynamic dispatch in c++?
Explain what is meant by 'bit masking'?