what is brs test reply me email me kashifabbas514@gmail.com
No Answer is Posted For this Question
Be the First to Post Answer
main(int argc, char **argv) { printf("enter the character"); getchar(); sum(argv[1],argv[2]); } sum(num1,num2) int num1,num2; { return num1+num2; }
int i,j; for(i=0;i<=10;i++) { j+=5; assert(i<5); }
main() { char string[]="Hello World"; display(string); } void display(char *string) { printf("%s",string); }
void main() { int *mptr, *cptr; mptr = (int*)malloc(sizeof(int)); printf(ā%dā,*mptr); int *cptr = (int*)calloc(sizeof(int),1); printf(ā%dā,*cptr); }
main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
print numbers till we want without using loops or condition statements like specifically(for,do while, while swiches, if etc)!
find simple interest & compund interest
main() { float me = 1.1; double you = 1.1; if(me==you) printf("I love U"); else printf("I hate U"); }
How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?
#include <stdio.h> main() { char * str = "hello"; char * ptr = str; char least = 127; while (*ptr++) least = (*ptr<least ) ?*ptr :least; printf("%d",least); }
How will u find whether a linked list has a loop or not?
How to count a sum, when the numbers are read from stdin and stored into a structure?