Write a program to show the change in position of a cursor using c
What is boolean in c?
Is linux written in c?
How many bytes are occupied by near, far and huge pointers (dos)?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
explain what is an endless loop?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
What is the use of static variable in c?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
Write a program in c to replace any vowel in a string with z?
What is static volatile in c?
Name the language in which the compiler of "c" in written?
how to find that no is int or float?