What does s c mean on snapchat?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Explain #pragma in C.
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
Add Two Numbers Without Using the Addition Operator
What is the explanation for the dangling pointer in c?
ratio,age,persentage
write a C code To reverse a linked list
what is the different bitween abap and abap-hr?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
What is the difference between a function and a method in c?
Is void a keyword in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;