What is the difference between %d and %i?
No Answer is Posted For this Question
Be the First to Post Answer
Write a programe print the sum of series 0,1,2,.....10
How can variables be characterized?
how do we remove the printed character in printf statement and write next it it
what is calloc and malloc?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What are the two types of structure?
What are different types of operators?
What is c value paradox explain?
a simple program in c language
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }