Explain what are run-time errors?
Why is not a pointer null after calling free?
Explain the advantages of using macro in c language?
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
how to add numbers without using arithmetic operators.
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
what is recursion in C
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What are static variables, and where are they stored?
How. To pass the entrance test
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Distinguish between actual and formal arguments.