In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
No Answer is Posted For this Question
Be the First to Post Answer
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
What is the difference between static and global variables?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
What is sizeof int in c?
What is c language in simple words?
What does it mean when the linker says that _end is undefined?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
what is difference between null and nul in c language
How main function is called in c?
What does nil mean in c?
Why is c called c?