Can a program have two main functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is the size of a union variable?
What is 2c dna?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
what is the difference between i++ and ++i?
What are dangling pointers in c?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
write a program to print largest number of each row of a 2D array
what is bitwise operator?
How to swap 3 numbers without using 4th variable?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?