Is void a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between malloc() and calloc() function in c language?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What are volatile variables?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
what is the use of macro program
How to convert decimal to binary in C using recursion??
What is pointers in c?
Why ca not I do something like this?
what is ans for this scanf(%%d",c);
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
Write a pro-gramme to determine whether the number is even or odd?