What does s c mean in text?
No Answer is Posted For this Question
Be the First to Post Answer
What are pointers? What are stacks and queues?
Explain how can you avoid including a header more than once?
whats the use of header file in c?
Explain what are its uses in c programming?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Explain the difference between struct and union.
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What is assignment operator?
Explain what is the difference between a free-standing and a hosted environment?
Can include files be nested?
can v write main() { main(); } Is it true?
say the following declaration is correct nr not. int b=a,n=0;