Explain the concept and use of type void.
No Answer is Posted For this Question
Be the First to Post Answer
what is function pointer?
In C language, a variable name cannot contain?
What is the difference between typeof(foo) and myFoo.GetType()?
What are the advantages of union?
what will be the output for the following main() { printf("hi" "hello"); }
c program to add and delete an element from circular queue using array
What is the Purpose of 'extern' keyword in a function declaration?
How to get string length of given string in c?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
write a program to generate 1st n fibonacci prime number
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
What is the function of multilevel pointer in c?