Explain what are its uses in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by Recursion Function?
write a program in c language for the multiplication of two matrices using pointers?
1. Write a program to reverse every second word in a given sentence.
Is register a keyword in c?
What is the role of this pointer?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
What is static identifier?
What is non linear data structure in c?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
Once I have used freopen, how can I get the original stdout (or stdin) back?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?