What is register variable in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is data structure in c programming?
What does return 1 means in c?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
How to draw the flowchart for structure programs?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
Explain how do you use a pointer to a function?
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
Process by which one bit pattern in to another by bit wise operation is?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
cavium networks written test pattern ..
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }