What is keyword with example?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
Explain what are multibyte characters?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
what is a function prototype?
What is meant by realloc()?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
How can you convert integers to binary or hexadecimal?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
What is a #include preprocessor?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.