What is the output of the below code snippet?
#include<stdio.h>
main()
{
for(;;)printf("Hello");
}
What is the role of "r+" on the file "NOTES.TXT" in the given below code?
#include<stdio.h>
int main ()
{
FILE *fp;
fp = fopen("NOTES.TXT", "r+");
return 0;
}
In the given below code, the function fopen()uses "r" to open the file “source.txt” in binary mode for which purpose?
#include<stdio.h>
int main ()
{
FILE *fp;
fp = fopen("source.txt", "r");
return 0;
}
Turbo C in 16 bit DOS OS, the correct range of “long double” is,
What is the output of the following program?
#include<stdio.h>
main()
{
char *s = "Fine";
*s = 'N';
printf("%s", s);
}
What is the output of the following program?
#include<stdio.h>
main()
{
printf("\");
}
What are the various Access Specifiers in C++?
10) What does this declaration mean? int x : 4;
What will this program print? main() { int i = 2; { int i = 4, j = 5; printf("%d %d", i, j); ...
See more
What will be the output of this program?
What is the 16-bit compiler allowable range for integer constants?
What is the Difference between Class and Structure?