What is static volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
in iso what are the common technological language?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
what is bitwise operator?
What is null in c?
What is the use of header files?
p*=(++q)++*--p when p=q=1 while(q<=6)
How can my program discover the complete pathname to the executable from which it was invoked?
Explain the difference between strcpy() and memcpy() function?
Write a program to check prime number in c programming?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
what is the flow of execution in cprogram? ex:printf();,scanf();