How we can insert comments in a c program?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
How to explain the final year project as a fresher please answer with sample project
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
what is meant by c
What is the output of printf("%d", printf("Hello"));?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Explain the use of keyword 'register' with respect to variables.
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
What is #ifdef ? What is its application?
Explain how can you tell whether two strings are the same?