what are # pragma staments?
No Answer is Posted For this Question
Be the First to Post Answer
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
How can I read a directory in a c program?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
What is a static function in c?
What is the use of the function in c?
What is exit() function?
What is a loop?
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
main() { int i; printf("%d",i^i); }
What is Conio.h ?
Write a program in c to print * * * * * *******
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above