How are pointers declared in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
differentiate built-in functions and user ā defined functions.
Explain how do you determine the length of a string value that was stored in a variable?
What is the general form of a C program?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
What is restrict keyword in c?
What is methods in c?
What does %p mean?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What is c programing language?
What is an expression?
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }