What is a rvalue?
No Answer is Posted For this Question
Be the First to Post Answer
What is an array in c?
where do we use structure pointer?
the operator for exponencation is a.** b.^ c.% d.not available
What is 1f in c?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
explain how do you use macro?
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
Why is main function so important?
Why should I prototype a function?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }