What is "Duff's Device"?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
Write program to remove duplicate in an array?
How can I automatically locate a programs configuration files in the same directory as the executable?
What is c programming structure?
What are the different types of constants?
#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?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
what is the difference between c and c++?
What is the use of f in c?
write a program to find out number of on bits in a number?
Define circular linked list.