What does nil mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of sprintf() function?
What does 3 mean in texting?
Do you know what is a programing language ?
Define function pointers?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
how to set Nth bit of a variable?
How do you define a function?
what is difference between C and C++
Why the use of alloca() is discouraged?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is switch in c?
What are the key features of C?