how many types of operators are include in c language
a) 4
b) 6
c) 8
d) 12
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program in Fibonacci series.
#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); }
Why c is a procedural language?
How does #define work?
Can you define which header file to include at compile time?
How would you rename a function in C?
Is fortran still used in 2018?
Explain is it valid to address one element beyond the end of an array?
What's a "sequence point"?
C program to find all possible outcomes of a dice?
Are pointers really faster than arrays?
How does pointer work in c?