Simplify the program segment if X = B then C ← true else C
← false
No Answer is Posted For this Question
Be the First to Post Answer
What are the keywords in c?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
Does sprintf put null character?
What is floating point constants?
c program to add and delete an element from circular queue using array
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
what is use of malloc and calloc?
Who had beaten up hooligan "CHAKULI" in his early college days?
What is the difference between break and continue?
What is an expression?
What is c++ used for today?