What are types of preprocessor in c?
String concatenation
who is the father of C Language?
20 Answers CTS, UST,
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
How can I write functions that take a variable number of arguments?
What is wrong with this code?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
what will be the output for the following main() { printf("hi" "hello"); }
What is the difference between the expression “++a” and “a++”?
Not all reserved words are written in lowercase. TRUE or FALSE?
How would you sort a linked list?
What is array of pointers to string?