What is string function c?
No Answer is Posted For this Question
Be the First to Post Answer
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
printf("%d",(printf("Hello")); What it returns?
What do you understand by friend-functions? How are they used?
Explain the difference between null pointer and void pointer.
what is the use of keyword volatile??
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
What are qualifiers?
What does 4d mean in c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
What are types of structure?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Is it possible to use curly brackets ({}) to enclose single line code in c program?