How many types of functions are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
How many parameters should a function have?
What is cohesion and coupling in c?
Why is struct padding needed?
Who developed c language?
What is C++
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
What is a list in c?
What do you mean by team??
C program to perform stack operation using singly linked list
why Language C is plateform dependent
how to add two numbers without using arithmetic operators?