Write a program to reverse a given number in c?
No Answer is Posted For this Question
Be the First to Post Answer
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
why division operator not work in case of float constant?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
#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 the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
What is key word in c language?
What is the relationship between pointers and data structure?
What is the difference between NULL and NUL?
How to define structures? ·
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
program to find the magic square
Difference between linking and loading?