Computer Science, asked by geethasravya7323, 8 months ago

what
happens if you try to compile and run this program
#include <stdio.h>
#include <string.h>
int main (void) {

char s[5] = "ABC";
Strcat (s+1, "ABC");
pointf("%d", S[0] -S[1])
return 0;
}​

Answers

Answered by jubinv04
0

Answer:

You will get error.

Explanation:

implicit declaration of function ‘Strcat’

implicit declaration of function ‘pointf’

Kindly post the correct code

Similar questions