What does 3 periods mean in texting?
No Answer is Posted For this Question
Be the First to Post Answer
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
What does %c mean in c?
What is echo in c programming?
#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 define c?
advantages of pointers?
Diff between for loop and while loop?
Explain the difference between fopen() and freopen().
write a progam to display the factors of a given number and disply how many prime numbers are there?
Tell me the use of bit field in c language?
What is pointers in c?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????