What is switch in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is "Hungarian Notation"?
1. main() { printf("%d",printf("HelloSoft")); } Output?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
Find if a number is power of two or not?
what is answer for perfect number????????????????
What is external variable in c?
second highest number in a given set of numbers
what is the output of below int n=10; (n++)++; printf("%d",n);
Why cant I open a file by its explicit path?
What is structure padding ?