Describe the difference between = and == symbols in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
What is the difference between printf and scanf in c?
What is 2 d array in c?
Why we not create function inside function.
What is data structure in c programming?
Write a program using bitwise operators to invert even bits of a given number.
Explain the difference between malloc() and calloc() in c?
#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); }
Please write the area of a RIGHT ANGLED TRIANGLE.
program to print upper & lower triangle of a matrix
What are the usage of pointer in c?
What is main () in c?