find the value of y
y = 1.5x+3 for x<=2
y = 2x+5 for x>2
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of sprintf?
Is r written in c?
What is difference between Structure and Unions?
What is c language used for?
How can I do serial ("comm") port I/O?
write a function for strtok()??
What is a #include preprocessor?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
Why c is called a mid level programming language?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }