What is pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
#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?
Explain c preprocessor?
Bit swapping
What is nested structure with example?
Explain enumerated types in c language?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
how can i calculate mean,median,mode by using c program
Write a program in c to input a 5 digit number and print it in words.
write a program for odd numbers?
What are the 5 organizational structures?
how to find anagram without using string functions using only loops in c programming
What is a dynamic array in c?