Explain how can I pad a string to a known length?
No Answer is Posted For this Question
Be the First to Post Answer
How do you initialize function pointers? Give an example?
what is diognisis?
In c language can we compile a program without main() function?
Distinguish between actual and formal arguments.
What are the types of variables in c?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
What are the advantages of c preprocessor?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What is n in c?
When would you use a pointer to a function?