What is a null string in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to find the kth smallest element in the given list of array elemnts.
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
What are extern variables in c?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
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(); }
why return type of main is not necessary in linux
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
what is self refrential structure
For what purpose null pointer used?
What is array in c with example?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?