How to find the usage of memory in a c program
Why is C language being considered a middle level language?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
What are the features of c language?
#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); }
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
Why we use int main and void main?
Is null a keyword in c?
What does typeof return in c?
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
How are structure passing and returning implemented?