Explain modulus operator.
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to store and print name,address,roll.no of a student using structures?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
A program to allow an input operand and operator from the operator and read on the display and output operand.
What is type qualifiers?
Why C language is a procedural language?
What is the purpose of the preprocessor directive error?
What are the advantages of using linked list for tree construction?
how should functions be apportioned among source files?
#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 do we use pointer to pointer in c?
How are 16- and 32-bit numbers stored?