In C programming, how do you insert quote characters (‘ and “) into the output screen?
No Answer is Posted For this Question
Be the First to Post Answer
How do you list files in a directory?
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
Explain what does it mean when a pointer is used in an if statement?
Explain what is dynamic data structure?
Function to find the given number is a power of 2 or not?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
print the table 5 in loops
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
What is "Duff's Device"?
main() { int a[10]; printf("%d",*a+1-*a+3); }
What does it mean when a pointer is used in an if statement?