What will be the output of following program
#include
main()
{
int x,y = 10;
x = y * NULL;
printf("%d",x);
}
what is the diference between pointer to the function and function to the pointer?
Explain the difference between exit() and _exit() function?
What is main return c?
what is Structural oriented language? give some example of this language.....?
What is the difference between fread buffer() and fwrite buffer()?
Can we write a program without main() function?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
Write a program in C to convert date displayed in gregorian to julian date
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
Is array a primitive data type in c?
Explain what is the difference between text files and binary files?