what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
1
2
3
4
Using pointer, changing A to B and B to A is Swapping the function using two address and one temperory variable. a,b are address, t is temporary variable. How function look like?
swap(int *, int *, int )
swap(int *, int, int )
swap(int, int *, int )
None Of the Given Answers
Find the prototype of sine function.
extern double sin(double)
extern double sin(int)
extern int sin(double)
double sin(double)
Scope of a global variable which is declared as static?
File
Procedure
Funtion
None of the Given Anwers
what is the o/p printf(" Hello \o is the world ");
Hello is the world.
Hello \o is the world.
Hello 0 is the world.
None OF the Given Aswers
What is int *p(char (*s)[])
p is a function which is returning a pointer to integer which takes arguments as pointer to array of characters.
p is a function which is returning a pointer to integer which takes arguments as pointer to array of integer.
p is a function which is returning a pointer to float which takes arguments as pointer to array of characters.
None of the Given Anwers
how many flip flops you require for modulo 33 counter.