What is void c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
In C language what is a 'dangling pointer'?
How does the assert() function work?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
how do we remove the printed character in printf statement and write next it it
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
what is the difference between #include<stdio.h> and #include "stdio.h" ?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
How can you be sure that a program follows the ANSI C standard?
WHAT IS PRE POSSESSORS?