Write a C program in Fibonacci series.
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
What does extern mean in a function declaration?
What are nested functions in c?
What is a program flowchart and explain how does it help in writing a program?
How can I trap or ignore keyboard interrupts like control-c?
What happens if header file is included twice?
How would you sort a linked list?
What is graph 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); }
print out of string in this format; 1. "rajesh" 2. \n 3. %d
Do character constants represent numerical values?