What is static and volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of void pointer?
When should the volatile modifier be used?
In C, What is the #line used for?
List the different types of c tokens?
how to make a scientific calculater ?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
Can you apply link and association interchangeably?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
What is the right way to use errno?
How many levels of pointers can you have?
What is the difference between fork() and vfork()?